为了账号安全,请及时绑定邮箱和手机立即绑定

javascript

<!doctype html>
<html>

<head>
<meta charset="UTF-8" />
<title>Document</title>
<style type="text/css">
* {
margin: 0;
padding: 0;
}

#d1 {
position: relative;
width: 200px;
height: 150px;
/*border: 1px solid #f5f5f5;*/
background-color: yellow;
left: -180px;
top: 0px;
}

#d1 span {
position: absolute;
width: 20px;
height: 50px;
background-color: green;
color: white;
/*border: 1px solid #f5f5f5;*/
font-family: "微软雅黑";
text-align: center;
left: 200px;
top: 55px;
}
</style>

</head>

<body>
<div id="d1">
<span id="share">
分享
</span>
</div>
<script type="text/javascript">
window.onload = function() {
var divd1 = document.getElementById(" d1");
divd1.onmouseover = function() {
startMove();
}
}

function startMove() {
var divd1 = document.getElementById(" d1");
setInterval(function() {
divd1.style.left = divd1.offsetLeft + 10 + 'px';
}, 30)
}
</script>
</body>

</html>

http://img1.sycdn.imooc.com//59017bd90001aed206030057.jpg

这个问题要怎么解决?

正在回答

1 回答

你看下你是不是getElementById("d1")那个d1前面是不是多了个空格,divd1找不到" d1"这个元素,为null

0 回复 有任何疑惑可以回复我~
#1

Base_Love 提问者

啊,这个我真的没注意到! 谢谢。
2017-04-28 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
JS动画效果
  • 参与学习       113923    人
  • 解答问题       1443    个

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

进入课程
意见反馈 帮助中心 APP下载
官方微信