jquery 中使用slideDown(),怎么避免动画重复??

$(".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);
});

posted on 2016-09-07 19:08  发烧开发者  阅读(3161)  评论(0编辑  收藏  举报

导航