canvas教程

HTML5 Canvas 画钟表

字号+ 作者:H5之家 来源:H5之家 2017-09-12 17:02 我要评论( )

画钟表是2D画图的老生常谈,我也不能免俗弄了一个。代码如下: 完整代码从这里下载:https://files.cnblogs.com/files/xiandedanteng/clock.rar ...

钟表 出现文字表示你的浏览器不支持HTML5 draw(){ ); canvas.width=200; canvas.height=200; context); context.translate(); clock); clock.init(); animate(); }; var context; var clock; function animate(){ context.clearRect( clock.paintBg(context); clock.paintScale(context); clock.paintNumbers(context); clock.paintPointers(context); ){ // 让浏览器自行决定帧速率 window.requestAnimationFrame(animate); } } Clock(radius){ radius; this.img; (){ Image(); ; } (ctx){ ctx.drawImage(); }; (ctx){ ){ ; Math.cos(getRad(degree)); Math.sin(getRad(degree)); ctx.strokeStyle ; ctx.fillStyle; ctx.beginPath(); ){ ctx.arc(x,y,); }else{ //ctx.arc(x,y,0.5,0,Math.PI*2,false); } ctx.closePath(); ctx.fill(); } }; (ctx){ ctx.font; ctx.fillStyle; ctx.fillText(); ctx.fillText(); ctx.fillText(); ctx.fillText(); }; (ctx){ Date(); date.getHours(); date.getMinutes(); date.getSeconds(); ctx.font; ctx.fillStyle; ctx.fillText(hour); ; ; context.save(); context.rotate(getRad(-90)); var x,y; context.lineWidth=0.5; xMath.cos(getRad(angleS)); yMath.sin(getRad(angleS)); ctx.strokeStyle ; ctx.beginPath(); ctx.moveTo(); ctx.lineTo(x,y); ctx.stroke(); ctx.closePath(); context.lineWidth=1.5; xMath.cos(getRad(angleM)); yMath.sin(getRad(angleM)); ctx.strokeStyle ; ctx.beginPath(); ctx.moveTo(); ctx.lineTo(x,y); ctx.stroke(); ctx.closePath(); context.lineWidth=2; xMath.cos(getRad(angleH)); yMath.sin(getRad(angleH)); ctx.strokeStyle ; ctx.beginPath(); ctx.moveTo(); ctx.lineTo(x,y); ctx.stroke(); ctx.closePath(); context.restore(); ctx.fillStyle; ctx.arc(); ctx.fill(); }; } getRad(degree){ } getColor(index){ ){ ; }){ ; }){ ; }){ ; }){ ; }){ ; }){ ; }){ ; }){ ; }){ ; }){ ; }){ ; }){ ; }){ ; }){ ; } }

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • canvas 绘制二次贝塞尔曲线

    canvas 绘制二次贝塞尔曲线

    2017-09-09 18:00

  • JavaScript入门之Canvas(一): 2D Context

    JavaScript入门之Canvas(一): 2D Context

    2017-08-28 18:00

  • 移动端 canvas插入多张图片生成一张可保存到手机图片

    移动端 canvas插入多张图片生成一张可保存到手机图片

    2017-08-26 11:04

  • Canvas文本操作

    Canvas文本操作

    2017-08-22 09:02

网友点评
3