0
我使用的是Galleria jQuery插件(在此地址找到:http://galleria.io/),我想知道是否有人可以在創建最初「Galleria」實例的代碼中指出我。我知道有一個Galleria類和構造函數,但我無法找到/不明白最初實例的製作位置。使用Jquery的環球免稅店
我懷疑它可能是這裏的某個地方:
$.fn.galleria = function(options) {
var selector = this.selector;
// try domReady if element not found
if (!$(this).length) {
$(function() {
if ($(selector).length) {
// if found on domReady, go ahead
$(selector).galleria(options);
} else {
// if not, try fetching the element for 5 secs, then raise a warning.
Galleria.utils.wait({
until: function() {
return $(selector).length;
},
success: function() {
$(selector).galleria(options);
},
error: function() {
Galleria.raise('Init failed: Galleria could not find the element "'+selector+'".');
},
timeout: 5000
});
}
});
return this;
}
return this.each(function() {
// fail silent if already run
if (!$.data(this, 'galleria')) {
$.data(this, 'galleria', new Galleria().init(this, options));
}
});
};
非常感謝你的幫助。我是一個jQuery和Javascript的初學者。