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

请问这哪里错了

请问这哪里错了

<!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <title>透明度动画</title>     <style type="text/css">         .div{             width: 300px;             height: 300px;             background-color: blue;             opacity: 0.5;         }     </style>     <script type="text/javascript">         window.onload=function(){             var div = document.getElementById("div")             div.onmouseover=function(){                 startMove(1);             }             div.onmouseout=function(){                 startMove(0.5);             }         }         var timer;         var opacity=0.5;         function startMove(itarget){             clearInterval(timer)             var div = document.getElementById("div")             timer = setInterval(function(){                 var speed = 0;                 if ( div.style.opacity>itarget){                     speed=-0.5;                 }else {                     speed=0.5;                 }                 if(opacity==itarget){                     clearInterval(timer)                 }else {                     opacity +=speed;                     div.style.opacity=opacity;                 }             },30)         }     </script> </head> <body>  <div class="div"></div> </body> </html>
查看完整描述

1 回答

已采纳
?
木子舟义

TA贡献33条经验 获得超4个赞

你既然用的 getElementById('div')  那你倒是给DIV一个ID值撒。

查看完整回答
反对 回复 2015-12-06
  • 1 回答
  • 0 关注
  • 1145 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信