js实现手表表盘时钟与圆周运动
网络编程 2021-07-04 14:06www.168986.cn编程入门
这篇文章主要为大家详细介绍了js实现手表表盘时钟与圆周运动,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
苹果手表表盘时钟与js圆周运动
实现结果
需求分析
1、时钟时间按照北京时间进行显示;
2、时针、分针、秒针按照时钟运转标准进行运转;
3、小球跟随秒表围绕表盘进行圆周运动。
代码分析
1、html结构时针、分针、秒针、小球分别用一个div,将他们一起放到一个大的div中;
2、css样式表盘布局多使用相对定位与绝对定位,将表针与各时刻标刻移动到特定的位置;
3、js行为为了实现动态获取时间,可以使用var now=new Date(),再利用定时器setInterval,实现每经过1s重新获取当前时间。
核心函数
时钟运动
function getTimeDeg(){ //获取当前时间,计算在时钟上,时、分、秒对应转动角度 var now=new Date(); var s=now.getSeconds(); var sDeg=s/60360; var m=now.getMinutes(); var mDeg=(m60+s)/3600360; var h=now.getHours(); var hDeg=(h3600+m60+s)/(360012)360; divH.style.transform=`rotate(${hDeg}deg)`; divM.style.transform=`rotate(${mDeg}deg)`; divS.style.transform=`rotate(${sDeg}deg)`; }
圆周运动
function circleMotion(){ var now=new Date(); var sball=now.getSeconds(); var saDeg=sball/60360-90; var r = 250; var radian = saDegMath.PI/180; var = Math.cos(radian)r; var left = Math.sin(radian)r; ball.style.left= +'px'; ball.style. = left+'px'; }
完整源代码(复制可用)
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>表盘时钟</title> <style> #circle{ width: 500px;height: 500px;border-radius: 255px; position: relative;: 50px;left: 500px; background: radial-gradient(black,grey); border:#f7f7f7 10px solid; box-shadow: 0px 0px 0px 2px #a3a4a6,0px 0px 0px 32px #dedfe1; } #ball{ width: 30px;height: 30px;border-radius: 15px; background-color: red;position: absolute; margin-: 235px;margin-left: 235px; z-index: 6; } #dian{ width: 40px;height: 40px;border-radius: 20px; background-color:white;position: absolute; margin-: 230px; margin-left: 230px; box-shadow:0px -15px 10px -7px #867c7c inset,0px 0px 2px 0px black ; z-index: 6; } #h{ width:8px;height: 100px;background-color: white; position: absolute;border-radius: 8px;left: 246px;: 150px; box-shadow:0px 0px 2px 1px #867c7c inset,0px 0px 1px 0px black ; z-index: 3; } #m{ width:6px;height: 150px;background-color: white; position: absolute;: 100px;left: 247px;border-radius: 6px; box-shadow:0px 0px 1px 0px #867c7c inset,0px 0px 1px 0px black ; z-index: 4; } #s{ width:2px;height: 180px;background-color: red; position: absolute;: 70px;left: 249px;border-radius: 2px; z-index: 5; } #s,#m,#h{ transform-origin: center bottom; } .tip{ width: 6px;height: 26px;border-radius: 3px;background-color: white; position: absolute;box-shadow:0px 0px 2px 1px #867c7c inset,0px 0px 1px 0px black ; } #time1{ : 34px;left: 372px;transform-origin: center ;transform: rotate(30deg); } #time2{ : 125px;left: 463px;transform-origin: center ;transform: rotate(60deg); } #time3{ : 230px;left: 475px;transform: rotate(90deg); width: 10px;height: 40px;border-radius: 5px; } #time4{ : 349px;left: 460px;transform-origin:bottom center ;transform: rotate(-60deg); } #time5{ : 440px;left: 369px;transform-origin:bottom center ;transform: rotate(-30deg); } #time6{ : 460px;left: 245px;width: 10px;height: 40px;border-radius: 5px; } #time7{ : 440px;left: 122px;transform-origin:bottom center ;transform: rotate(30deg); } #time8{ : 349px;left: 31px;transform-origin:bottom center ;transform: rotate(60deg); } #time9{ : 230px;left: 15px;transform: rotate(90deg); width: 10px;height: 40px;border-radius: 5px; } #time10{ : 124px;left: 30px;transform-origin: center ;transform: rotate(-60deg); } #time11{ : 33px;left: 121px;transform-origin: center ;transform: rotate(-30deg); } #time12{ : 0px;left: 245px; width: 10px;height: 40px;border-radius: 5px; } </style> </head> <body> <div id="circle"> <div id="h"></div> <div id="m"></div> <div id="s"></div> <div id="ball" class="tip"></div> <div id="dian" class="tip"></div> <div id="time1" class="tip"></div> <div id="time2" class="tip"></div> <div id="time3" class="tip"></div> <div id="time4" class="tip"></div> <div id="time5" class="tip"></div> <div id="time6" class="tip"></div> <div id="time7" class="tip"></div> <div id="time8" class="tip"></div> <div id="time9" class="tip"></div> <div id="time10" class="tip"></div> <div id="time11" class="tip"></div> <div id="time12" class="tip"></div> </div> <script> //获取div节点 var ball=document.getElementById("ball") var divS=document.getElementById("s"); var divM=document.getElementById("m"); var divH=document.getElementById("h"); //调用函数,可删除,删除后需等待1s才能看到运转 getTimeDeg(); //设置间隔时间为1s的定时器,每1s运行一次函数 setInterval(getTimeDeg,1000); //时间获取函数 circleMotion(); setInterval(circleMotion,1000); //时钟运动 function getTimeDeg(){ //获取当前时间,计算在时钟上,时、分、秒对应转动角度 var now=new Date(); var s=now.getSeconds(); var sDeg=s/60360; var m=now.getMinutes(); var mDeg=(m60+s)/3600360; var h=now.getHours(); var hDeg=(h3600+m60+s)/(360012)360; divH.style.transform=`rotate(${hDeg}deg)`; divM.style.transform=`rotate(${mDeg}deg)`; divS.style.transform=`rotate(${sDeg}deg)`; } //圆周运动 function circleMotion(){ var now=new Date(); var sball=now.getSeconds(); var saDeg=sball/60360-90; var r = 250; var radian = saDegMath.PI/180; var = Math.cos(radian)r; var left = Math.sin(radian)r; ball.style.left= +'px'; ball.style. = left+'px'; } </script> </body> </html>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持狼蚁SEO。
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程