扫码关注官方订阅号
代码如下:
Document
人生最曼妙的风景,竟是内心的淡定与从容!
var speed = 0.1;//增加一个speed变量 setInterval(function(){ speed = speed - 0.001;//让速度减小 if (speed > 0){ ang += speed; }else{ clearInterval();//清除定时器 } x = parseInt(origX + r*Math.cos(ang) - circleR); y = parseInt(origY + r*Math.sin(ang) -circleR); circle.style.left = x + "px"; circle.style.top = y + "px"; },100);
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
人生最曼妙的风景,竟是内心的淡定与从容!