您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關html5實現鐘表外觀的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
html5已經出來好長時間了,但仍然有不多小伙伴們不太懂,下面小編就來用html5實現一個簡單的鐘表外觀
<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度旋轉一次 } context.fillRect(0,-2,90,3); context.stroke(); } </script> </head> <body> <canvas id=myCanvas width=500px height=400px></canvas> </body> </html>
關于html5實現鐘表外觀的方法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。