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

我的代码怎么没反应啊 ???//

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>速度动画效果</title>
<style type="text/css">
   *{
   margin:0px;
   padding: 0px;
   }
   #hide{
   height: 200px;
   width: 200px;
   background-color: red;
   filter:alpha(opacity=30);
   opacity: 0.3;
   }
   
</style>
</head>
<body>
<div id="hide">
</div>
<script type="text/javascript">
var hideDiv=document.getElementById('hide');
window.onload=function(){
hideDiv.onmousever=function(){
    startMove(100);
}
hideDiv.onmouseout=function(){
    startMove(30);
}

var timer=null;
var alphaa=30;
function startMove(iTarget) {
var hideDiv=document.getElementById('hideDiv');
clearInterval(timer);
timer=setInterval(function(){
var speed=0;
if (alphaa>iTarget) {
speed=-10;
}
else{
speed=10;
}
if (alphaa==iTarget) {
  clearInterval(timer);
}
else{
alphaa+=speed;
hideDiv.style.filter="alpha(opacity:"+alphaa+")";
hideDiv.style.opacity=alphaa/100;
}
},30)
}
}
</script>
</body>
</html>


正在回答

1 回答

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>速度动画效果</title>
<style type="text/css">
   *{
   margin:0px;
   padding: 0px;
   }
   #hide{
   height: 200px;
   width: 200px;
   background-color: red;
   filter:alpha(opacity=30);
   opacity: 0.3;
   }
    
</style>
</head>
<body>
<div id="hide">
</div>
<script type="text/javascript">
var hideDiv=document.getElementById('hide');
window.onload=function(){
hideDiv.onmouseover =function(){
    startMove(100);
	
}
hideDiv.onmouseout=function(){
    startMove(30);
}
 
var timer=null;
var alphaa=30;
function startMove(iTarget) {
var hideDiv=document.getElementById('hide');
clearInterval(timer);
timer=setInterval(function(){
var speed=0;
if (alphaa>iTarget) {
speed=-10;
}
else{
speed=10;
}
if (alphaa==iTarget) {
  clearInterval(timer);
}
else{
alphaa+=speed;
hideDiv.style.filter="alpha(opacity:"+alphaa+")";
hideDiv.style.opacity=alphaa/100;
}
},30)
}
}
</script>
</body>
</html>

希望是您要的答案

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

举报

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

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

进入课程

我的代码怎么没反应啊 ???//

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信