为什么这个没有动画效果啊

来源:2-1 JS速度动画

宝宝是吃货

2016-03-02 22:22

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>

<style type="text/css">
#move{
position:relative;
width:50px;
height:60px;
background:#00CC33;
top:75px;
left:-30px;
}
</style>
<style>
<script>
window.onload = function(){
var oDiv = document.getElementById('move');
oDiv.onmouseover = function(){
startmove();
}
}
function startmove(){
var oDiv = document.getElementById('move');
setInterval(function(){
oDiv.style.left = oDiv.offsetLeft+10+'px';
},30);
}
</script>
</style>
</head>
<body>
<div id="move">hello
</div>
</body>
</html>

写回答 关注

2回答

  • slowACtion
    2016-03-02 23:53:10
    已采纳

    <script>上面有一个多余的<style>

  • 宝宝是吃货
    2016-03-03 10:45:36

    脑残的我一直写<style type = "text/javascript">

JS动画效果

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

113925 学习 · 1443 问题

查看课程

相似问题