这似乎是非常基本但我无法找到关于这个主题的任何内容,我试着看Advanced Documentation而不是这里,但没有。
当轮播更改图像以执行某些DOM操作时,我需要执行回调。有没有办法做到这一点?
答案 0 :(得分:1)
有一个onAfter属性
onAfter : function(oldItems, newItems) {
...
}
答案 1 :(得分:0)
没有scroll.onAfter
这样做吗?
Function that will be called right after the carousel finished scrolling.
This function receives the same parameter as the onBefore-callback function.
答案 2 :(得分:0)
你应该试试这个:
$(document).ready(function() {
$("#caroufredsel-6").carouFredSel({
responsive : true,
items : 3,
width: '100%',
height: 'auto',
scroll: {
duration: 1000,
timeoutDuration: 3000,
onBefore : function( data ) {
console.log("Transition");
//alert("Transition");
}
}
});
});