真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

html5怎么制作時(shí)鐘動(dòng)畫

本篇內(nèi)容介紹了“html5怎么制作時(shí)鐘動(dòng)畫”的有關(guān)知識,在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

十年的循化網(wǎng)站建設(shè)經(jīng)驗(yàn),針對設(shè)計(jì)、前端、開發(fā)、售后、文案、推廣等六對一服務(wù),響應(yīng)快,48小時(shí)及時(shí)工作處理。營銷型網(wǎng)站建設(shè)的優(yōu)勢是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動(dòng)調(diào)整循化建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計(jì),從而大程度地提升瀏覽體驗(yàn)。成都創(chuàng)新互聯(lián)公司從事“循化網(wǎng)站設(shè)計(jì)”,“循化網(wǎng)站推廣”以來,每個(gè)客戶項(xiàng)目都認(rèn)真落實(shí)執(zhí)行。

代碼如下:


var clock=document.getElementById("clock");
   var cxt=clock.getContext("2d");
function drawNow(){
   var now=new Date();
   var hour=now.getHours();
   var min=now.getMinutes();
   var sec=now.getSeconds();
   hour=hour>12?hour-12:hour;
   hour=hour+min/60;
   //表盤(藍(lán)色)
   cxt.lineWidth=10;
   cxt.strokeStyle="blue"
   cxt.beginPath();
   cxt.arc(250,250,200,0,360,false);
   cxt.closePath();
   cxt.stroke();
   //刻度
   //時(shí)刻度
   for(var i=0;i<12;i++){
       cxt.save();
       cxt.lineWidth=7;
       cxt.strokeStyle="black";
       cxt.translate(250,250);
       cxt.rotate(i*30*Math.PI/180);//旋轉(zhuǎn)角度  角度*Math.PI/180=弧度
       cxt.beginPath();
       cxt.moveTo(0,-170);
       cxt.lineTo(0,-190);
       cxt.closePath();
       cxt.stroke();
       cxt.restore();
   }
   //分刻度
   for(var i=0;i<60;i++){
       cxt.save();
       //設(shè)置分刻度的粗細(xì)
       cxt.lineWidth=5;
       //重置畫布原點(diǎn)
       cxt.translate(250,250);
       //設(shè)置旋轉(zhuǎn)角度
       cxt.rotate(i*6*Math.PI/180);
       //畫分針刻度
       cxt.strokeStyle="black";
       cxt.beginPath();
       cxt.moveTo(0,-180);
       cxt.lineTo(0,-190);
       cxt.closePath();
       cxt.stroke();
       cxt.restore();
   }
   //時(shí)針
   cxt.save();
   // 設(shè)置時(shí)針風(fēng)格
   cxt.lineWidth=7;
   cxt.strokeStyle="black";
   cxt.translate(250,250);
   cxt.rotate(hour*30*Math.PI/180);
   cxt.beginPath();
   cxt.moveTo(0,-140);
   cxt.lineTo(0,10);
   cxt.closePath();
   cxt.stroke();
   cxt.restore();
   //分針
   cxt.save();
   cxt.lineWidth=5;
   cxt.strokeStyle="black";
   //設(shè)置異次元空間分針畫布的中心
   cxt.translate(250,250);
   cxt.rotate(min*6*Math.PI/180);
   cxt.beginPath();
   cxt.moveTo(0,-160);
   cxt.lineTo(0,15);
   cxt.closePath();
   cxt.stroke()
   cxt.restore();
   //秒針
   cxt.save();
   //設(shè)置秒針的風(fēng)格
   //顏色:紅色
   cxt.strokeStyle="red";
   cxt.lineWidth=3;
   //重置原點(diǎn)
   cxt.translate(250,250);
   //設(shè)置角度
   //cxt.rotate(330*Math.PI/180);
   cxt.rotate(sec*6*Math.PI/180);
   cxt.beginPath();
   cxt.moveTo(0,-170);
   cxt.lineTo(0,20);
   cxt.closePath();
   cxt.stroke();
   //畫出時(shí)針,分針,秒針的交叉點(diǎn)
   cxt.beginPath();
   cxt.arc(0,0,5,0,360,false);
   cxt.closePath();
   //設(shè)置填充
   cxt.fillStyle="gray";
   cxt.fill();
   //cxt.strokeStyle="red";
   cxt.stroke();
   //畫出秒針的小圓點(diǎn)
   cxt.beginPath();
   cxt.arc(0,-140,5,0,360,false);
   cxt.closePath();
   //設(shè)置填充
   cxt.fillStyle="gray";
   cxt.fill();
   //cxt.strokeStyle="red";
   cxt.stroke();

   cxt.restore();

}
function drawClock(){
   cxt.clearRect(0,0,500,500);
   drawNow();
}
   drawNow();
   setInterval(drawClock,1000);

html5怎么制作時(shí)鐘動(dòng)畫

“html5怎么制作時(shí)鐘動(dòng)畫”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!


分享題目:html5怎么制作時(shí)鐘動(dòng)畫
路徑分享:http://weahome.cn/article/psiehi.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部