标签:
$(".list-box-item").hover(function(){
var $this = $(this);
$this.find(".cur-hover").stop(true, false).slideDown(300);
},function(){
var $this = $(this);
$this.find(".cur-hover").stop(true, false).slideUp(300);
});
jquery 中使用slideDown(),怎么避免动画重复??
标签:
原文地址:http://www.cnblogs.com/webgg/p/5850581.html