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

同时运动可以,链式,同时一起就不可以。大家帮我看看,我错哪了T T

同时运动可以,链式,同时一起就不可以。大家帮我看看,我错哪了T T

鸡肋2016 2016-08-08 02:02:50
// JavaScript Documentwindow.onload=function(){ var Li1=document.getElementById('li1');     Li2=document.getElementById('li2'); Li1.onmouseover=function(){  Move(Li1,{width:400,height:200,opacity:100},function(){   Move(Li1,{width:200,height:150,opacity:70});   })  } Li1.onmouseout=function(){  Move(Li1,{width:200,height:100,opacity:30})  } Li2.onmouseover=function(){  Move(Li2,{width:400,height:200,opacity:100})  } Li2.onmouseout=function(){  Move(Li2,{width:200,height:100,opacity:30})  } } function Move(obj,json,fn){  clearInterval(obj.timer);  obj.timer=setInterval(function(){   var flag=true;//假设所有运动都达到目标值   for(var attr in json)//获取当前值   {      var icor=0   if(attr=='opacity'){    icor=Math.round(parseFloat(getStyle(obj,attr))*100);    }   else{    icor=parseInt(getStyle(obj,attr));    }   var speed=(json[attr]-icor)/10;   speed=speed>0?speed=Math.ceil(speed):speed=Math.floor(speed);   if(icor!=json[attr]){    flag=false;         } //对flag真假的定义 假的,继续执行以上函数。   if(attr=='opacity'){    obj.style.filter='alpha(opacity:'+(icor+speed)+')';    obj.style.opacity=(icor+speed)/100;     }   else{    obj.style[attr]=icor+speed+'px';     }        }//json for结束   if(flag){    clearInterval(obj.timer)    if(fn){     fn();     }    }//若flag为真   },50)} function getStyle(obj,attr){  if(obj.currentStyle){   return obj.currentStyle[attr];   }  else{   return getComputedStyle(obj,false)[attr];   }  }
查看完整描述

1 回答

?
小王子抓猫咪

TA贡献9条经验 获得超7个赞

没有html代码吗

查看完整回答
反对 回复 2016-08-08
  • 1 回答
  • 0 关注
  • 1128 浏览
慕课专栏
更多

添加回答

举报

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