最新赞助活动温馨提示:自愿赞助服务器费用,学生和没有工作的整站资源免费下载!
头像

使用纯HTML5编写一款网页上的时钟的代码分享_html5教程技巧-H5教程

来源:http://erdangjiade.com/topic/134567.html H5程序员 2017-10-19 10:30浏览(224)

你需要知道的:

canvas标签只是图形容器,您必须使用脚本来绘制图形。默认大小:宽300px,高150px;

getContext() 方法可返回一个对象,该对象提供了用于在画布上绘图的方法和属性。——获取上下文对象。
getContext("2d") 对象属性和方法,可用于在画布上绘制文本、线条、矩形、圆形等等。

fillRect(l,t,w,h):默认颜色是黑色 strokeRect(l,t,w,h):带边框的方块。默认一像素黑色边框

setInterval() 方法可按照指定的周期(以毫秒计)来调用函数或计算表达式。

beginPath():定义开始绘制路径, 它把当前的点设置为 (0,0)。 当一个画布的环境第一次创建,beginPath()
方法会被显式地调用。
closePath():结束绘制路径(将起点与终点进行连接)


绘制圆形:
arc( x,y,半径,起始弧度,结束弧度,旋转方向)
x,y:起始位置
弧度与角度的关系:弧度=角度*Math.PI/180
旋转方向:顺时针(默认:false,逆时针:true)

代码:

XML/HTML Code复制内容到剪贴板

  1. <!DOCTYPE HTML>
  2. <html lang="en-US">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title></title>
  6. <script>
  7. window.onload = function(){
  8. var oC = document.getElementById('ch1');
  9. var oGC = oC.getContext('2d');
  10. function drawClock(){
  11. var x = 200; //指定坐标
  12. var y = 200;
  13. var r = 150; //指定钟表半径
  14. oGC.clearRect(0,0,oC.width,oC.height);//清空画布
  15. var oDate = new Date(); //创建日期对象
  16. var oHours = oDate.getHours();//获取时间
  17. var oMin = oDate.getMinutes();
  18. var oSen = oDate.getSeconds();
  19. var oHoursValue = (-90 + oHours*30 + oMin/2)*Math.PI/180; //设置时针的值
  20. var oMinValue = (-90 + oMin*6)*Math.PI/180;
  21. var oSenValue = (-90 + oSen*6)*Math.PI/180;
  22. oGC.beginPath();//开始
  23. for(var i=0;i<60;i++){ //i为60,代表着时钟的60个小刻度
  24. oGC.moveTo(x,y);
  25. oGC.arc(x,y,r,6*i*Math.PI/180,6*(i+1)*Math.PI/180,false); //循环从6度到12度
  26. }
  27. oGC.closePath();
  28. oGC.stroke();
  29. oGC.fillStyle ='white'; //覆盖住小刻度的黑色线
  30. oGC.beginPath();
  31. oGC.moveTo(x,y);
  32. oGC.arc(x,y,r*19/20,0,360*(i+1)*Math.PI/180,false);
  33. oGC.closePath();//结束
  34. oGC.fill();
  35. oGC.lineWidth = 3; //设置时钟圆盘大刻度的粗细值
  36. oGC.beginPath(); //开始画大的时钟刻度
  37. for(i=0;i<12;i++){ //i为12,代表着时钟刻度的12大格
  38. oGC.moveTo(x,y);
  39. oGC.arc(x,y,r,30*i*Math.PI/180,30*(i+1)*Math.PI/180,false); // 间隔为30度,弧度=角度*Math.PI/180
  40. }
  41. oGC.closePath();
  42. oGC.stroke();
  43. oGC.fillStyle ='white'; //覆盖住大刻度的黑色线
  44. oGC.beginPath();
  45. oGC.moveTo(x,y);
  46. oGC.arc(x,y,r*18/20,360*(i+1)*Math.PI/180,false);
  47. oGC.closePath();
  48. oGC.fill();//表盘完成
  49. oGC.lineWidth = 5;//设置时针宽度
  50. oGC.beginPath();//开始绘制时针
  51. oGC.moveTo(x,y);
  52. oGC.arc(x,y,r*10/20,oHoursValue,oHoursValue,false);//设置时针大小和弧度
  53. oGC.closePath();
  54. oGC.stroke();
  55. oGC.lineWidth = 3;//设置分针宽度
  56. oGC.beginPath();//开始绘制分针
  57. oGC.moveTo(x,y);
  58. oGC.arc(x,y,r*14/20,oMinValue,oMinValue,false);//设置分针大小和弧度
  59. oGC.closePath();
  60. oGC.stroke();
  61. oGC.lineWidth = 1;//设置秒针宽度
  62. oGC.beginPath();//开始绘制秒针
  63. oGC.moveTo(x,y);
  64. oGC.arc(x,y,r*19/20,oSenValue,oSenValue,false);//设置秒针大小和弧度
  65. oGC.closePath();
  66. oGC.stroke();
  67. }
  68. setInterval(drawClock,1000);//设置定时器,让时钟运转起来
  69. drawClock();
  70. };
  71. </script>
  72. </head>
  73. <body>
  74. <canvas id = "ch1" width = "400px" height = "400px"></canvas>
  75. </body>
  76. </html>

点击下方result查看演示:
http://jsfiddle.net/eh02450b/2/

评论0
头像

友情提示:垃圾评论一律封号 加我微信:826096331拉你进VIP群学习群

1 2