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

运动——匀速运动然后停止

时间:2016-03-11 13:47:46      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:

代码:

 

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<style>
#div1 {
width: 100px;
height: 100px;
background: #ff4b46;
position: absolute;
left: 100px;
top: 50px;

}

#vertical_line {
width: 1px;
height: 300px;
position: absolute;
left: 300px;
top: 0;
background: black;
}
</style>
<script>
var timer = null;
function startMove(iTarget) {

clearInterval(timer);
timer = setInterval(function () {
var oDiv = document.getElementById("div1");

var speed = 0;
if (oDiv.offsetLeft < iTarget) {
speed = 7;
}
else {
speed = -7;
}
if (Math.abs(iTarget - oDiv.offsetLeft) <= 7) {
clearInterval(timer);
oDiv.style.left = iTarget + ‘px‘;
} else {
speed = 7;
oDiv.style.left = oDiv.offsetLeft + speed + "px";
document.title = oDiv.offsetLeft + ‘,‘ + speed;
}
}, 30);
}


</script>
</head>
<body>
<input type="button" value="开始运动" onclick="startMove(300)">

<div id="div1">


</div>
<div id="vertical_line"></div>

</body>
</html>

 

运行结果:

初始界面:

  技术分享

点击鼠标之后界面:

  技术分享

运动——匀速运动然后停止

标签:

原文地址:http://www.cnblogs.com/theWayToAce/p/5265210.html

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