您好,登錄后才能下訂單哦!
這篇文章主要介紹了JavaScript中canvas動(dòng)畫(huà)實(shí)現(xiàn)時(shí)鐘效果的方法,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>時(shí)鐘特效</title> </head> <body> <canvas width="150" height="150" id="canvas"></canvas> </body> </html> <script> clock();// 顯示 setInterval(clock,1000);// 每一秒重繪一次,達(dá)到轉(zhuǎn)動(dòng)效果 function clock(){ var now = new Date();// 得到當(dāng)前日期與時(shí)間 var second = now.getSeconds(), min = now.getMinutes(), hour = now.getHours();// 得到時(shí)分秒 hour = hour > 12?hour-12:hour; var canvas = document.getElementById('canvas'); var ctx = canvas.getContext('2d'); ctx.clearRect(0,0,150,150);// 初始化畫(huà)布 ctx.save(); ctx.translate(75,75);// 平移坐標(biāo)原點(diǎn) ctx.scale(0.4,0.4);//縮放效果 ctx.rotate(-Math.PI/2);// 將x軸旋轉(zhuǎn)-90 ctx.strokeStyle = 'black'; ctx.fillStyle = 'black'; ctx.lineWidth = 8; ctx.lineCap = 'round'; // 顯示時(shí)針刻度 ctx.save(); ctx.beginPath(); for(var i = 0;i<12;i++) { ctx.rotate(Math.PI/6); ctx.moveTo(100,0); ctx.lineTo(120,0); } ctx.stroke(); ctx.closePath(); ctx.restore();// 恢復(fù) ctx.save(); // 顯示秒針刻度 ctx.beginPath(); ctx.lineWidth = 5; for(var i = 0;i < 60; i++) { if(i % 5 != 0) { ctx.moveTo(117,0); ctx.lineTo(120,0); } ctx.rotate(Math.PI/30);// 轉(zhuǎn)6度 } ctx.stroke(); ctx.closePath(); ctx.restore();// 恢復(fù) ctx.save(); // 繪制時(shí)針 ctx.beginPath(); ctx.rotate((Math.PI / 6)*hour + (Math.PI/360)*min + (Math.PI /21600)*second)//時(shí)針當(dāng)前指向的位置 ctx.lineWidth = 14; ctx.moveTo(-20,0); ctx.lineTo(75,0); ctx.stroke(); ctx.closePath(); ctx.restore();//恢復(fù) ctx.save(); // 繪制分針 ctx.beginPath(); ctx.strokeStyle = 'black'; ctx.lineWidth = 10; ctx.rotate((Math.PI/30)*min + (Math.PI/1800)*second);// 分針當(dāng)前的位置 ctx.moveTo(-28,0); ctx.lineTo(102,0); ctx.stroke(); ctx.closePath(); ctx.restore();//恢復(fù) ctx.save(); // 繪制秒針 ctx.beginPath(); ctx.rotate(Math.PI/30*second); ctx.strokeStyle = '#D40000'; ctx.lineWidth = 6; ctx.moveTo(-30,0); ctx.lineTo(83,0); ctx.stroke(); ctx.closePath(); ctx.restore();//恢復(fù) ctx.save(); //繪制表框 ctx.beginPath(); ctx.lineWidth = 4; ctx.strokeStyle = '#325Fa2'; ctx.arc(0,0,142,0,Math.PI*2,true);//半徑142 ctx.stroke(); ctx.closePath(); ctx.restore()//恢復(fù) ctx.restore()//恢復(fù) } </script>
1、能夠嵌入動(dòng)態(tài)文本于HTML頁(yè)面。2、對(duì)瀏覽器事件做出響應(yīng)。3、讀寫(xiě)HTML元素。4、在數(shù)據(jù)被提交到服務(wù)器之前驗(yàn)證數(shù)據(jù)。5、檢測(cè)訪客的瀏覽器信息。6、控制cookies,包括創(chuàng)建和修改等。7、基于Node.js技術(shù)進(jìn)行服務(wù)器端編程。
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“JavaScript中canvas動(dòng)畫(huà)實(shí)現(xiàn)時(shí)鐘效果的方法”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來(lái)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。