2
我已經實現了Coda Slider 3.0(this one),我需要獲取當前顯示的圖像的URL。有誰知道如何做到這一點?如何獲取Coda Slider 3中加載面板的編號?
我知道有一個名爲「firstPanelToLoad」的設置,所以我想通過一定的方法可以獲得當前面板的編號。
我已經實現了Coda Slider 3.0(this one),我需要獲取當前顯示的圖像的URL。有誰知道如何做到這一點?如何獲取Coda Slider 3中加載面板的編號?
我知道有一個名爲「firstPanelToLoad」的設置,所以我想通過一定的方法可以獲得當前面板的編號。
我最終在javascript中添加了自己的功能。我又增加了選項$ .fn.liquidSlider.options這成爲我的自定義回調函數:
$.fn.liquidSlider.options = {
...
swipe: true,
swipeArgs: undefined,
customCallback: function(currentSlide) {}
};
然後在setNextPanel函數可以調用自定義的回調與當前選定的面板:
setNextPanel: function(direction) {
...
self.options.customCallback(self.nextPanel);
}