码迷,mamicode.com
首页 > 其他好文 > 详细

语速加速运动

时间:2017-03-09 23:57:16      阅读:354      评论:0      收藏:0      [点我收藏+]

标签:inpu   style   floor   com   css   onload   etc   height   false   

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<script type="text/javascript">
window.onload=function(){
var obox=document.getElementById("box");
document.getElementById("btn").onclick=function(){
stratMove(obox,300,‘width‘)
}
}
function stratMove(obj,iTarget,attr){
clearInterval(obj.timer);
obj.timer=setInterval(function(){
var iCur=parseInt(getStyle(obj,attr));
var ispeed=(iTarget-iCur)/8;
ispeed=ispeed>0?Math.ceil(ispeed):Math.floor(ispeed);
obj.style[attr]=ispeed+iCur+"px";
document.getElementById("txt").value=obj.style[attr]
},30);
}

function getStyle(obj,attr){
if(obj.currentStyle)
{
return obj.currentStyle[attr];
}
else
{
return getComputedStyle(obj,false)[attr];
}
}
</script>
<style type="text/css">
#box{
width:100px;
height:100px;
background-color:red;
}
</style>
</head>
<body>
<input type="text" name="txt" id="txt" value=""/>
<input type="button" name="btn" id="btn" value="开始" />
<div id="box">

</div>
</body>
</html>

语速加速运动

标签:inpu   style   floor   com   css   onload   etc   height   false   

原文地址:http://www.cnblogs.com/biao-123/p/6528302.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!