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

speed=speed>0?Math.ceil(speed):Math.floor(speed); 向上取整没有用

function getStyle(obj,attr){
	if(obj.currentStyle){
		return obj.currentStyle[attr];
	}
	else{
		return getComputedStyle(obj,null)[attr];
	}
}

function mover(){
	var box=document.getElementById("box");
	box.timer=null;
	box.onmouseover=function(){
		star(box,"width",400);
	}
	box.onmouseout=function(){
		star(box,"width",200);
	}
}


function star(obj,attr,target)
{
	clearInterval(obj.timer);
		
	obj.timer=setInterval(function(){
		
		
		
			var  who=obj.offsetWidth;
//		who=parseInt(getStyle(obj,attr));
		

		var speed=(target-who)/8;
		
		
  speed=speed>0?Math.ceil(speed):Math.floor(speed);
		
		
		if(who==target)
		{
			clearInterval(obj.timer);
			
		}
		
		document.getElementById("id1").innerHTML=who;
		document.getElementById("id2").innerHTML=speed;
		obj.style[attr]=who+speed+"px";
		
		
	},30);
	

	
}

还是395 取整了也没有   代码我一个个对了也没问题   在ie下 可以到达400没有问题  谷歌下就不行?

http://img1.sycdn.imooc.com//567e9b6c0001a5e107360213.jpg


正在回答

2 回答

仅仅在搜狗试了下,可以。在谷歌没试

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

一箭落旄头 提问者

谷歌浏览器的问题 火狐也可以
2016-01-08 回复 有任何疑惑可以回复我~
0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

speed=speed>0?Math.ceil(speed):Math.floor(speed); 向上取整没有用

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