主頁 > 知識(shí)庫 > 用HTML5的canvas實(shí)現(xiàn)一個(gè)炫酷時(shí)鐘效果

用HTML5的canvas實(shí)現(xiàn)一個(gè)炫酷時(shí)鐘效果

熱門標(biāo)簽:杭州營銷電銷機(jī)器人供應(yīng)商 貸款電銷人工和機(jī)器人哪個(gè)好 飛亞外呼系統(tǒng) 高德地圖標(biāo)注賓館位置 電話機(jī)器人如何 電視購物電銷外呼系統(tǒng) 西寧智能外呼系統(tǒng)加盟 聯(lián)通400電話申請(qǐng) 百應(yīng)電銷機(jī)器人產(chǎn)業(yè)

對(duì)于H5來說,canvas可以說是它最有特色的一個(gè)地方了,有了它之后我們可以隨意的在網(wǎng)頁上畫各種各樣的圖形,做一些小游戲啊什么的。canvas這個(gè)標(biāo)簽的用法,在網(wǎng)上也有特別多的教程了,這里就不作介紹了。今天我們就用canvas來做一個(gè)小小的時(shí)鐘。

那么首先在這個(gè)頁面里面我使用了兩個(gè)canvas,一個(gè)用來繪制靜態(tài)的時(shí)鐘表盤和刻度,另一個(gè)用來繪制時(shí)鐘的三個(gè)指針,然后用定位讓他們重合到一起。然后這里沒什么好說的,下面附上代碼。

JavaScript Code復(fù)制內(nèi)容到剪貼板
  1. <canvas id="plate">   
  2.         畫表盤   
  3. </canvas>   
  4. <canvas id="needles">   
  5.         畫時(shí)針   
  6. </canvas>  
JavaScript Code復(fù)制內(nèi)容到剪貼板
  1. var plate=document.getElementById('plate');   
  2. var needles=document.getElementById('needles');   
  3. needles.setAttribute('style','position:absolute;top:8px;left:8px;');  //這里因?yàn)閏hrome里面,body的magin值為8px,所以我這里就沒設(shè)為0了。   
  4. var cntP=plate.getContext('2d');   
  5. var cntH=needles.getContext('2d');   
  6. plate.width=800;   
  7. plate.height=500;   
  8. needles.width=800;   
  9. needles.height=500;  

到了這里準(zhǔn)備工作就做完了,下面就準(zhǔn)備繪制時(shí)鐘了。我先定義了一個(gè)繪制時(shí)鐘表盤的構(gòu)造函數(shù)。

JavaScript Code復(fù)制內(nèi)容到剪貼板
  1. function drawclock(cnt,radius,platelen,linewidth,numLen,NUMLEN){   
  2.             this.cnt=cnt;   
  3.             this.radius=radius;   
  4.             this.platelen=platelen;   
  5.             this.linewidth=linewidth;   
  6.             this.numLen=numLen;   
  7.             this.NUMLEN=NUMLEN;   
  8.             this.getCalibCoor=function(i){     
  9.                 //獲得表盤刻度兩端的坐標(biāo)   
  10.                 var X=200+this.radius*Math.sin(6*i*Math.PI/180);   
  11.                 var Y=200-this.radius*Math.cos(6*i*Math.PI/180);   
  12.                 var x=200+(this.radius-this.platelen)*Math.sin(6*i*Math.PI/180);   
  13.                 var y=200-(this.radius-this.platelen)*Math.cos(6*i*Math.PI/180);   
  14.   
  15.                 // 獲得分鐘數(shù)字的坐標(biāo)   
  16.                 var numx=200+(this.radius-this.platelen-this.numLen)*Math.sin(6*i*Math.PI/180);   
  17.                 var numy=200-(this.radius-this.platelen-this.numLen)*Math.cos(6*i*Math.PI/180);   
  18.                 //獲得小時(shí)數(shù)字的坐標(biāo)   
  19.                 var numX=200+(this.radius-this.platelen-this.NUMLEN)*Math.sin(6*i*Math.PI/180);     
  20.                 var numY=200-(this.radius-this.platelen-this.NUMLEN)*Math.cos(6*i*Math.PI/180);   
  21.                 return {X:X,Y:Y,x:x,y:y,numx:numx,numy:numy,numX:numX,numY:numY};   
  22.             };   
  23.             this.drawCalibration=function(){ //畫刻度   
  24.                 for(var i=0,coorObj;i<60;i++){   
  25.                     coorObj=this.getCalibCoor(i);   
  26.                     this.cnt.beginPath();   
  27.                     this.cnt.moveTo(coorObj.X,coorObj.Y);   
  28.                     this.cnt.lineTo(coorObj.x,coorObj.y);   
  29.                     this.cnt.closePath();   
  30.   
  31.                     this.cnt.lineWidth=this.linewidth;   
  32.                     this.cnt.strokeStyle='#ddd';   
  33.                     i%5==0&&(this.cnt.strokeStyle='#aaa')   
  34.                     &&(this.cnt.lineWidth=this.linewidth*2);   
  35.                     i%15==0&&(this.cnt.strokeStyle='#999')   
  36.                     &&(this.cnt.lineWidth=this.linewidth*3);   
  37.                     this.cnt.stroke();   
  38.   
  39.                     this.cnt.font='10px Arial';   
  40.                     this.cnt.fillStyle='rgba(0,0,0,.2)';   
  41.                     this.cnt.fillText(i,coorObj.numx-7,coorObj.numy+3);   
  42.                     i%5==0&&(this.cnt.fillStyle='rgba(0,0,0,.5)')   
  43.                         &&(this.cnt.font='18px Arial')   
  44.                         &&(this.cnt.fillText(i/5,coorObj.numX-5,coorObj.numY+5));   
  45.                 }   
  46.             };   
  47.         }   
  48.   
  49.       var clock=new drawclock(cntP,200,5,1,10,25); //實(shí)例化一個(gè)表盤對(duì)象   
  50.       clock.drawCalibration();  

這里最重要的部分就應(yīng)該是獲得刻度和數(shù)字繪制的坐標(biāo)了。我把繪制刻度的起始點(diǎn)放在了表盤的邊緣上,然后從表盤的半徑上減去刻度的長(zhǎng)度,就可以得到刻度終點(diǎn)的位置,然后利用角度和三角函數(shù)得到兩個(gè)點(diǎn)的坐標(biāo)。最后就可以繪制出表盤的刻度了。下面繪制出表盤上的數(shù)字也是一樣的方法。我這里吧表盤的中心放在了(200,200)這里位置。到了這里我們就已經(jīng)繪制好了一個(gè)靜態(tài)的時(shí)鐘表盤。

下面我又定義了一個(gè)繪制時(shí)鐘指針的構(gòu)造函數(shù)。

JavaScript Code復(fù)制內(nèi)容到剪貼板
  1. function clockNeedle(cnt,R,lineWidth,strokeStyle,lineCap,obj){   
  2.             this.R=R;   
  3.             this.cnt=cnt;   
  4.             this.lineWidth=lineWidth;   
  5.             this.strokeStyle=strokeStyle;   
  6.             this.lineCap=lineCap;   
  7.             this.obj=obj;   
  8.             this.getNeedleCoor=function(i){   
  9.                 var X=200+this.R*0.8*Math.sin(i); //起點(diǎn)的坐標(biāo)   
  10.                 var Y=200-this.R*0.8*Math.cos(i);   
  11.   
  12.                 var x=200-20*Math.sin(i); //終點(diǎn)的坐標(biāo)   
  13.                 var y=200+20*Math.cos(i);   
  14.                 return {X:X,Y:Y,x:x,y:y};   
  15.             };   
  16.             this.drawNeedle=function(){   
  17.                 var d=new Date().getTime();   
  18.                 var angle;   
  19.                 switch(this.obj){   
  20.                     case 0:   
  21.                     angle=(d/3600000%24+8)/12*360*Math.PI/180;   
  22.                     break;   
  23.                     case 1:   
  24.                     angle=d/60000%60/60*360*Math.PI/180;   
  25.                     break;   
  26.                     case 2:   
  27.                     angle=d/1000%60/60*360*Math.PI/180;   
  28.                     break;   
  29.                 }   
  30.                 var coorobj=this.getNeedleCoor(angle);   
  31.                 this.cnt.beginPath();   
  32.                 this.cnt.moveTo(coorobj.x,coorobj.y);   
  33.                 this.cnt.lineTo(coorobj.X,coorobj.Y);   
  34.                 // this.cnt.closePath();   
  35.   
  36.                 this.cnt.lineWidth=this.lineWidth;   
  37.                 this.cnt.strokeStyle=this.strokeStyle;   
  38.                 this.cnt.lineCap=this.lineCap;   
  39.                 this.cnt.stroke();   
  40.             }   
  41.         }  

這里有兩個(gè)地方需要說一下:1、在我們獲得當(dāng)前時(shí)間的的毫秒數(shù),然后轉(zhuǎn)換為小時(shí)的時(shí)候,對(duì)24取模計(jì)算出當(dāng)天的小時(shí)數(shù)的時(shí)候,這里需要加上8。2、如果想要使用lineCap這個(gè)屬性嗎,那么上面在設(shè)置路徑的時(shí)候,不要用closePath()。

到了這里我們還需要一個(gè)來繪制指針的方法,并且讓指針看起來能夠轉(zhuǎn)動(dòng):

JavaScript Code復(fù)制內(nèi)容到剪貼板
  1. function draw(){   
  2.             cntH.clearRect(0,0,needles.width,needles.height);   
  3.             var mzneedle=new clockNeedle(cntH,200,1,'rgba(0,0,0,.5)','round',2);   
  4.             //最后一個(gè)參數(shù)0代表畫時(shí)針,1畫分針,2畫秒針   
  5.             var fzneedle=new clockNeedle(cntH,80,3,'rgba(0,0,0,.4)','round',0);   
  6.             var szneedle=new clockNeedle(cntH,140,2,'rgba(0,0,0,.3)','round',1);   
  7.             mzneedle.drawNeedle();   
  8.             fzneedle.drawNeedle();   
  9.             szneedle.drawNeedle();   
  10.             cntH.arc(200,200,5,0,2*Math.PI);   
  11.             cntH.fillStyle='rgba(0,0,0,.5)';   
  12.             cntH.fill();   
  13.  }   
  14.  setInterval(draw,1);  

下面附上該時(shí)鐘的圖片:

以上這篇用HTML5的canvas實(shí)現(xiàn)一個(gè)炫酷時(shí)鐘效果就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。

原文地址:http://www.cnblogs.com/ww-ervin-72/p/5325773.html

標(biāo)簽:邯鄲 牡丹江 晉中 安慶 撫州 煙臺(tái) 玉溪 內(nèi)蒙古

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《用HTML5的canvas實(shí)現(xiàn)一個(gè)炫酷時(shí)鐘效果》,本文關(guān)鍵詞  用,HTML5,的,canvas,實(shí)現(xiàn),一個(gè),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《用HTML5的canvas實(shí)現(xiàn)一個(gè)炫酷時(shí)鐘效果》相關(guān)的同類信息!
  • 本頁收集關(guān)于用HTML5的canvas實(shí)現(xiàn)一個(gè)炫酷時(shí)鐘效果的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章