這似乎是非常基本的,但我找不到任何關於這個主題,我試過看Advanced Documentation,但在這裏,但沒有。用carouFredSel執行圖像更改功能
當傳送帶改變圖像做一些DOM操作時,我需要執行回調。有沒有辦法做到這一點?
這似乎是非常基本的,但我找不到任何關於這個主題,我試過看Advanced Documentation,但在這裏,但沒有。用carouFredSel執行圖像更改功能
當傳送帶改變圖像做一些DOM操作時,我需要執行回調。有沒有辦法做到這一點?
你應該試試這個:
$(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");
}
}
});
});
有一個onAfter屬性
onAfter : function(oldItems, newItems) {
...
}
不scroll.onAfter
做到這一點?
Function that will be called right after the carousel finished scrolling.
This function receives the same parameter as the onBefore-callback function.
多麼尷尬,你沒事吧。我嘗試了所有例子的小提琴,並且是我需要的。有趣的是,我嘗試了相同的東西進入jsbin並沒有工作。我稍後會在那裏看看它爲什麼不起作用。謝謝你們 – nrodastiscornia