qq_精慕门6106023
2019-07-26 10:41
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
#div1{
width: 200px;
height: 200px;
background-color: red;
position: relative;
top: 0;
left: -200px;
}
#div1 span{
width: 20px;
height: 50px;
background-color: blue;
position: absolute;
left: 200px;
top: 75px;
}
</style>
<script>
window.onload=function(){
var odiv=document.getElementById('div1');
odiv.onmouseover=function(){
startmove();
}
}
var timer=null;
function startmove(){
var odiv=document.getElementById('div1');
timer=setInterval(function(){
if(odiv.offsetLeft==0)
{
clearInterval(timer);
}
else
{odiv.style.left=odiv.offsetLeft+1+'px';}
},30)
}
</script>
</head>
<body>
<div id="div1">
<span id="分享">
分享
</span>
</div>
</body>
</html>
因为你的样式里面没有设置外间距,所以判断的结果不可能等于0,
你要么把判断条件改成>=0;
要么在头部样式(style)里面添加
*{
margin:0;
padding:0;
}
加上
*{
margin: 0;
padding: 0;
}
就会停下来了
JS动画效果
113925 学习 · 1443 问题
相似问题