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

为什么这里设置透明度时用opacity,50而不是用opacity,0.5,在程序第四十步cur=Math.round(parseFloat(getStyle(obj,attr))*100);里不是已经乘了100了吗?

<!DOCTYPE  HTML>
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>链式运动</title>
<style>
div{width:200px;height:200px;background-color:yellow;margin:10px;float:left;}
</style>
<script type="text/javascript">
   window.onload=function()
    {
     var oDiv1=document.getElementById('div1');
	 
	   oDiv1.onmouseover=function()
	   {
	     startMove(this,'height',400,function()
		 {
		  startMove(oDiv1,'opacity',50);
		 });
	   };
	   oDiv1.onmouseout=function()
	   {
	     startMove(this,'height',200);
	   };
	  
    }
  function getStyle(obj,attr){
     if(obj.currentStyle){
	   return obj.currentStyle[attr];}
	 else{
	   return getComputedStyle(obj,false)[attr];}
  }
  function startMove(obj,attr,iTarget,fn)
  {
	 clearInterval(obj.timer);
	 obj.timer=setInterval(function(){
	 var cur=0;
	 if(attr=='opacity')
	 {
	    cur=Math.round(parseFloat(getStyle(obj,attr))*100);
	 }
	 else { cur=parseInt(getStyle(obj,attr))}; 
	 var speed=(iTarget-cur)/6;
	 speed=speed>0?Math.ceil(speed):Math.floor(speed);
	    if (cur==iTarget)
		{
		   clearInterval(obj.timer);
		   if(fn){
		   fn();
		   }
		}
	    else
		{
		   if(attr=='opacity')
		   {
		     obj.style.filter='alpha(opacity:'+(cur+speed)+')';
			 obj.style.opacity=(cur+speed)/100;
		   }
		   else{obj.style[attr]=cur+speed+'px';}
        }
	 },30);
  }
</script>
</head>
<body>
<div id=div1></div>
</body>
</html>


正在回答

1 回答

currentStyle的结果在)到1之间,所以cur要x100;

使用50是为了和width和height保持一致。来计算speed

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

冰中何人知 提问者

非常感谢!
2016-01-11 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么这里设置透明度时用opacity,50而不是用opacity,0.5,在程序第四十步cur=Math.round(parseFloat(getStyle(obj,attr))*100);里不是已经乘了100了吗?

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