在 Jquery 中,有一种方法可以阻止该功能在您确定它也不是孩子mouseout()
时停止激活。div
我的html代码。
<div class="featured">
<div class="featured_top">
<p><span class="theme">Theme</span> Transparent </p>
</div>
<div class="pic" style="background: blue">
<!-- image -->
</div>
<div class="featured_des">
<p> this is awesome theme </p>
</div>
</div>
我的 js(jQuery)
$(document).ready(function(){
$(".pic").mouseover(function(){
$(this).animate({
width: 0
});
});
$(".pic").mouseout(function(){
$(this).animate({
width: 214
});
});
});
所以我的问题是,当它是div时,你能阻止该mouseout()
功能激活吗?featured_des
atm 它会为类的宽度设置动画.pic
,效果很好,但是当它完成时animate
,光标在它上面,featured_des
它会激活mouseout
并再次隐藏描述
示例:: http://www.grubber.co.nz/developer/_social_development/market.html