使用canvas繪制一個圓形時鐘?相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。
成都創(chuàng)新互聯(lián)是專業(yè)的東昌府網(wǎng)站建設(shè)公司,東昌府接單;提供成都網(wǎng)站建設(shè)、做網(wǎng)站,網(wǎng)頁設(shè)計,網(wǎng)站設(shè)計,建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行東昌府網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊,希望更多企業(yè)前來合作!
代碼如下:
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width,initial-scale=1"/> <title>canvas clock</title> <style type="text/css"> div{ text-align: center; margin-top: 250px; } #clock{ border: 1px solid #ccc; } </style> </head> <body> <div> <canvas id="clock" height="200px" width="200px"></canvas> </div> <script type="text/javascript"> var dom=document.getElementById("clock"); var ctx=dom.getContext("2d"); var width=ctx.canvas.width; var heigth=ctx.canvas.height; var r=width/2; //描繪時分秒小數(shù)和小數(shù)點 function drawBackground(){ ctx.save(); ctx.translate(r,r); //中心原點位置 ctx.beginPath(); //起始位置 ctx.lineWidth=10; //圓 ctx.arc(0,0,r-5,0,2*Math.PI,false); ctx.stroke(); var hourNumbers=[3,4,5,6,7,8,9,10,11,12,1,2]; ctx.font="18px Arial"; ctx.textAlign="center"; ctx.textBaseline="middle"; hourNumbers.forEach(function(number,i){ var rad=2*Math.PI/12*i; var x=Math.cos(rad)*(r-30); var y=Math.sin(rad)*(r-30); ctx.fillText(number,x,y); }); for (var i=0;i<60;i++) { var rad=2*Math.PI/60*i; var x=Math.cos(rad)*(r-18); var y=Math.sin(rad)*(r-18); ctx.beginPath(); if(i%5===0){ ctx.fillStyle="#000"; ctx.arc(x,y,2,2*Math.PI,false); }else{ ctx.fillStyle="#ccc"; ctx.arc(x,y,2,2*Math.PI,false); } ctx.fill(); } } //描繪時針 function drawHour(hour,minute){ ctx.save(); ctx.beginPath(); var rad=2*Math.PI / 12 * hour; var mrad=2*Math.PI / 12 / 60 * minute; ctx.rotate(rad + mrad); ctx.lineWidth=6; ctx.lineCap="round"; ctx.moveTo(0,10); ctx.lineTo(0,-r/2); ctx.stroke(); ctx.restore(); } //描繪分針 function drawMinute(minute){ ctx.save(); ctx.beginPath(); var rad=2*Math.PI/60*minute; ctx.rotate(rad); ctx.lineWidth=3; ctx.lineCap="round"; ctx.moveTo(0,10); ctx.lineTo(0,-r+30); ctx.stroke(); ctx.restore(); } //描繪秒針 function drawSecond(second){ ctx.save(); ctx.beginPath(); ctx.fillStyle="#C14543"; var rad=2*Math.PI/60*second; ctx.rotate(rad); ctx.moveTo(-2,20); ctx.lineTo(2,20); ctx.lineTo(1,-r+18); ctx.lineTo(-1,-r+18) ctx.fill(); ctx.restore(); } //中間固定園點 function drawDot(){ ctx.beginPath(); ctx.fillStyle="#fff"; ctx.arc(0,0,3,0,2*Math.PI,false); ctx.fill(); } function draw(){ ctx.clearRect(0,0,width,heigth); var now=new Date(); var hour=now.getHours(); var minute=now.getMinutes(); var second=now.getSeconds(); drawBackground(); drawHour(hour,minute); drawMinute(minute); drawSecond(second); drawDot(); ctx.restore(); } draw(); setInterval(draw,1000) </script> </body> </html>
效果如下:
看完上述內(nèi)容,你們掌握使用canvas繪制一個圓形時鐘的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!
分享標(biāo)題:使用canvas繪制一個圓形時鐘
標(biāo)題來源:http://jinyejixie.com/article0/ghoioo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站內(nèi)鏈、關(guān)鍵詞優(yōu)化、靜態(tài)網(wǎng)站、定制網(wǎng)站、自適應(yīng)網(wǎng)站、電子商務(wù)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)