Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在网站上使用 Accordionza JQuery 手风琴插件。我想在幻灯片动画完成时触发一个事件。没有例如slide_complete功能或callback手风琴。我的意思是这样的:
slide_complete
callback
$('#slide1').bind('slide_complete', function(event, slider){...});
知道怎么做吗?
onSlideOpen: function() { var href = $(this).find("a").data('url'); if(href) { setTimeout(function(){ //do something here }, 500); } }
请记住:500 代表延迟(动画的持续时间)。所以如果你改变默认的“slideSpeed”,你也必须改变超时值。上面的例子是我能做你想做的事的唯一方法:)。希望对你有帮助