您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)html5實(shí)現(xiàn)鐘表外觀的方法,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
html5已經(jīng)出來好長時(shí)間了,但仍然有不多小伙伴們不太懂,下面小編就來用html5實(shí)現(xiàn)一個(gè)簡單的鐘表外觀
<html lang="en-US"> <style> #myCanvas{border:3px solid blue;} </style> <head> <script type="text/javascript"> window.onload = function() { var mycanvas = document.getElementById("myCanvas"); var context = mycanvas.getContext("2d"); context.lineWidth = 2; context.strokeStyle = "blue"; context.fillStyle = "blue"; context.arc(250,200,5,0,Math.PI*2,true); context.fill(); context.beginPath(); context.arc(250,200,150,0,Math.PI*2,true); context.stroke(); context.translate(250,200); context.rotate(-Math.PI/2); context.save(); for(var i=0;i<60;i++) { if(i % 5 == 0) { context.fillRect(130,0,20,5); context.fillText((i/5 == 0?12:i/5),120,5); } else { context.fillRect(140,0,10,2) } context.rotate(Math.PI/30); //360°每6度旋轉(zhuǎn)一次 } context.fillRect(0,-2,90,3); context.stroke(); } </script> </head> <body> <canvas id=myCanvas width=500px height=400px></canvas> </body> </html>
關(guān)于html5實(shí)現(xiàn)鐘表外觀的方法就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。