圆周运动(运动小DEMO)

来源:互联网 发布:pkpm绿色建筑设计软件 编辑:程序博客网 时间:2024/05/04 19:15
<!DOCTYPE html><html><head><meta charset="UTF-8"><title>圆周运动</title><style>div{width: 50px;height: 50px;background: orange;position: absolute;left: 500px;top: 300px;}</style></head><body><div></div><script>var target=document.getElementsByTagName('div')[0];var timer=null;var a=500;var b=300;//圆心(a,b)var r=100;//半径 var degree=0;//角度timer=setInterval(function(){degree++;var x=a+r*Math.sin(degree*Math.PI/180);var y=b+r*Math.cos(degree*Math.PI/180);target.style.left=x+'px';target.style.top=y+'px';var cDiv=document.createElement('div');//添加轨迹cDiv.style.cssText='width: 5px;height: 5px;background: black;position: absolute;'cDiv.style.left=x+'px';cDiv.style.top=y+'px';document.body.appendChild(cDiv)/*if(degree>=360){clearInterval(timer)}*/},30)</script></body></html>
原创粉丝点击