常见的效果是鼠标移入某个对象上放大,移出时回到原来大小。这个demo希望实现的结果是移入时缩小,移出时放大。但这样就总是会出现闪现的效果。鼠标移出时变大,但变大却使得原来位置的鼠标变成了移入。所以当鼠标快速重复移入移出操作时,看到的效果会很奇怪。拜托高手帮我看一下怎样解决这个问题,非常感谢!
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<style>
#div1{width: 300px;height: 300px;background-color: red;}
</style>
</head>
<body>
<div id="div1"></div>
</body>
<script>
var div1=document.getElementById('div1');
var timer=null;
div1.onmouseover=function(){
move(this,{width:100,height:100},10);
}
div1.onmouseout=function(){
move(this,{width:300,height:300},10);
}
/*--------------------单一物体多属性匀速运动框架-------------------------*/
function move(obj,json,speed){
clearInterval(timer);
changeValue=0;
timer=setInterval(function(){
var btn=true;
for(var attr in json){
speed=speed<0?-speed:speed;
changeValue=parseInt(getStyle(obj,attr));
speed=changeValue>json[attr]?-speed:speed;//判断速度正负。
if((speed<0&&changeValue+speed>json[attr])||(speed>0&&changeValue+speed<json[attr])){
obj.style[attr]=changeValue+speed+'px';
}
else{
obj.style[attr]=json[attr]+'px';
}
}
if(btn){
clearInterval(obj.timer);
}
},30);
}
/*--------------------获取样式的函数-------------------------*/
function getStyle(obj,attr)
{
return obj.currentStyle?obj.currentStyle[attr]:getComputedStyle(obj,null )[attr];
}
</script>
</html>
用hover和transtion做不好吗? 当然用js也行,那么我们来想想如果固定视口区域。