jquery 中使用slideDown(),怎么避免动画重复??
Posted 发烧web开发者
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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);
});
以上是关于jquery 中使用slideDown(),怎么避免动画重复??的主要内容,如果未能解决你的问题,请参考以下文章
如何在zepto中实现类似slideDown()的jquery
jQuery slideUp 和 slideDown 正在提供弹跳效果