我的代码动不了

来源:2-1 JS速度动画

EVASHINJI

2016-04-30 23:33

<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <title>Move</title>
   <style type="text/css">
* {
           margin: 0;
padding: 0;
}
       #con {
           width: 200px;
height: 200px;
background: red;
position: relative;
top: 0;
left: -100px;
}
       #con span {
           width: 20px;
height: 50px;
position: absolute;
top: 75px;
left: 200px;
background: blueviolet;
}
   </style>
   <script>
window.onload() = function () {
           var oDiv = document.getElementById('con');
oDiv.onmouseover = function () {
              startMove(0);
}
           oDiv.onmouseout = function () {
               startMove(-200);
}
       }
       var timer = null;
function startMove(iTarget) {
           var oDiv = document.getElementById('con');
clearInterval(timer);
timer = setInterval(function () {
               var speed = 0;
if (oDiv.offsetLeft < iTarget) {
                   speed = 10;
} else {
                   speed = -10;
}
               if (oDiv.offsetLeft == iTarget) {
                   clearInterval(timer);
} else {
                   oDiv.style.left = oDiv.offsetLeft + speed + 'px';
}
           },30);
}
   </script>
</head>
<body>
<div id="con">
   <span>分享</span>
</div>
</body>
</html>

写回答 关注

1回答

  • EVASHINJI
    2016-05-01 01:39:49

    解决了,是window.onload那不能加括号

JS动画效果

通过本课程JS动画的学习,从简单动画开始,逐步深入各种动画框架封装

113925 学习 · 1443 问题

查看课程

相似问题