jquery 温故而知新 animate动画的一些坑
Posted 贝尔塔猫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery 温故而知新 animate动画的一些坑相关的知识,希望对你有一定的参考价值。
注意1,只有hover事件后才能紧跟着第二个回调函数(mouseleave),尽量还是不使用mouseover事件了
注意2,.stop(false,true); 结束动画,在动画队列中删除自己,并且直接按照原计划的动画效果的完成结果体现结束。
$(".header-list li").hover(function(e){ slideDowning = true; var selector = $(this).children(‘ul‘); if(!selector.is(":animated")) { selector.slideDown(100); } else { selector.stop(false,true); } },function(){ slideUping = true; var selector = $(this).children(‘ul‘); if(!selector.is(":animated")) { selector.slideUp(100); } else { selector.stop(false,true); } })
以上是关于jquery 温故而知新 animate动画的一些坑的主要内容,如果未能解决你的问题,请参考以下文章