为了账号安全,请及时绑定邮箱和手机立即绑定

Canvas 绘制时钟

难度中级
时长 1小时 0分
学习人数
综合评分9.73
141人评价 查看评价
9.8 内容实用
9.7 简洁易懂
9.7 逻辑清晰
  • 没人了现在
    查看全部
    0 采集 收起 来源:Canvas时钟展示

    2020-12-04

  • rad是求弧度
    查看全部
  • 再填充文本数字之前设置字体
    查看全部
  • 定义一个数组,存储小时数 然后遍历这个数组
    查看全部
  • 弧度=弧长/半径
    查看全部
  • js文件,绘制外框的圆
    查看全部
  • <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>clock</title> <style> div{ text-align:center; margin:250px auto; } #clock{ border:1px solid #CCC; } </style> </head> <body> <div> <canvas id="clock" height="200" width="200"></canvas> </div> <script type="text/javascript" src="clock.js"></script> </body> </html>
    查看全部
  • function draw(){ ctx.clearRect(0,0,width,height); var now = new Date(); var hour = now.getHours(); var minute = now.getMinutes(); var second = now.getSeconds(); drawBackground(); drawHour(hour,minute); drawMinute(minute); drawSecond(second); drawDot(); ctx.restore(); } draw(); setInterval(draw,1000);
    查看全部
  • function drawHour(hour,minute){ ctx.save(); ctx.beginPath(); var rad = 2 * Math.PI / 12 * hour; var mrad = 2 * Math.PI / 12 / 60 * minute; ctx.rotate(rad + mrad); ctx.lineWidth = 6* rem; ctx.lineCap = 'round'; ctx.moveTo(0,10* rem); ctx.lineTo(0,-r/2); ctx.stroke(); ctx.restore(); } function drawMinute(minute){ ctx.save(); ctx.beginPath(); var rad = rad = 2*Math.PI/60 * minute; ctx.rotate(rad); ctx.lineWidth = 3* rem; ctx.lineCap = 'round'; ctx.moveTo(0,10* rem); ctx.lineTo(0,-r + 15* rem); ctx.stroke(); ctx.restore(); } function drawSecond(second){ ctx.save(); ctx.beginPath(); ctx.fillStyle = '#f00'; var rad = rad = 2*Math.PI/60 * second; ctx.rotate(rad); ctx.moveTo(-2* rem , 10* rem); ctx.lineTo(2* rem , 15* rem); ctx.lineTo(1, -r + 10* rem); ctx.lineTo(-1, -r + 10* rem); ctx.fill(); ctx.restore(); } function drawDot(){ ctx.beginPath(); ctx.fillStyle = '#fff'; ctx.arc(0,0,3* rem,0,2*Math.PI,false); ctx.stroke(); }
    查看全部
  • function drawBackground(){ ctx.save(); ctx.translate(r,r); ctx.beginPath(); ctx.lineWidth = 4 * rem; ctx.arc(0,0,r - ctx.lineWidth / 2,0,2*Math.PI,false); ctx.stroke(); var hourNumbers = [3,4,5,6,7,8,9,10,11,12,1,2]; ctx.font=18* rem + 'px Arial'; ctx.textAlign='center';//左右居中 ctx.textBaseline='middle';//上下居中 hourNumbers.forEach(function(number,i){//遍历数组 var rad = 2*Math.PI/12 *i; var x = Math.cos(rad) * ( r - 20* rem); var y = Math.sin(rad) * (r - 20* rem); ctx.fillText(number,x,y);//按路径填充文本 }); for(var i = 0;i < 60; i++){ var rad = 2*Math.PI/60 *i; var x = Math.cos(rad) * ( r - 8* rem); var y = Math.sin(rad) * (r - 8* rem); ctx.beginPath(); if(i%5 === 0){ ctx.fillStyle = '#000'; ctx.arc(x,y,2* rem,0,2*Math.PI,false); }else{ ctx.fillStyle = '#ccc'; ctx.arc(x,y,2* rem,0,2*Math.PI,false); } ctx.fill(); } }
    查看全部
  • var dom = document.getElementById('clock'); var ctx = dom.getContext('2d');//获取上下文 var width = ctx.canvas.width; var height = ctx.canvas.height;//获取canvas的宽高 var r = width / 2; var rem = width/200;
    查看全部
  • <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>clock</title> <style> div{ text-align:center; margin:250px auto; } #clock{ border:1px solid #CCC; } </style> </head> <body> <div> <canvas id="clock" height="200" width="200"></canvas> </div> <script type="text/javascript" src="clock.js"></script> </body> </html>
    查看全部
    0 采集 收起 来源:Canvas时钟特效

    2018-03-22

  • 动态绘制时钟
    查看全部
  • 画秒针和中心原点
    查看全部
  • 画时针分针
    查看全部
  • 画时钟上的数字和点
    查看全部
  • 时钟效果
    查看全部
  • 画时钟外框圆
    查看全部
首页上一页1234567下一页尾页

举报

0/150
提交
取消
课程须知
javascript基础知识
老师告诉你能学到什么?
1、几何知识 2、从零学习canvas

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!