标签:query function 执行 position 问题 span color pos ima
上代码
<div id="small"></div> <div id="large"></div>
#small{
width: 100px;
height: 100px;
background: red;
position: absolute;
top: 100px;
left: 100px;
}
#large{
width: 200px;
height: 200px;
background: purple;
position: absolute;
left: 500px;
top: 300px;
}
$(function(){ $("#small").mouseover(function(){ $("#large").stop().animate({ width: "1000px" }); }); $("#small").mouseout(function(){ $("#large").stop().animate({ width: "200px" }); }); });
与其考虑怎么让动画执行过程中停下来,不如先让动画停下来再执行一次。
标签:query function 执行 position 问题 span color pos ima
原文地址:http://www.cnblogs.com/jiaoxuanwen/p/7267027.html