文章分类 Classification
javascript圆圈轨迹运动
稿件来源: 阳光企业网站管理系统 撰稿作者: 太阳光 发表日期: 2013-04-03 阅读次数: 114 查看权限: 游客查看
javascript圆圈轨迹运动
<!doctype html> <html> <head> <meta charset="utf-8"/> <title>javascript圆圈轨迹运动</title> <style> .circle{background-color:#999;width:40px;height:40px;border-radius:20px;position:absolute;top:0;left:0;margin:-20px} .li{position: absolute;width: 2px;height:2px;background-color: #000} </style> <script type="text/javascript"> function test(){ var id = document.getElementById("circle"); var loop = function(radian){ var i=radian%360; var cos = Math.cos(i*Math.PI/180); var sin = Math.sin(i*Math.PI/180); var r = 200; var y = cos*r + r; var x = sin*r + r; id.style.top = y + "px"; id.style.left = x + "px"; if(radian<360){ var div=document.createElement("div"); div.className="li"; div.style.top = y + "px"; div.style.left = x + "px"; document.body.appendChild(div); } setTimeout(function(){ radian+=1; loop(radian); },70); }; loop(0); } setTimeout(function(){test()},500); </script> </head> <body> <div class="circle" id="circle"></div> </body> </html>
关键词: js,圆圈运动,cossin 编辑时间: 2013-04-03
0
高兴0
支持0
搞笑1
不解0
谎言0
枪稿0
震惊0
无奈0
无聊0
反对0
愤怒
0%(0)
0%(0)
- 中搜索:javascript圆圈轨迹运动
- 中搜索:javascript圆圈轨迹运动
- 暂无评论
文章图片 article Pictrue
网友评论