我正在使用两种不同的 js,因为我使用两种不同的布局,一种用于台式机和 iphone....因为对于 iphone,我需要减小立方体大小....立方体大小来自 js....但我我得到两个不同的错误......
有两个不同的js函数一个是
$(document).ready(iphoneGallery.init);
$(document).ready(Gallery.init);
未捕获的 ReferenceError:未定义 iphoneGallery
$(window).bind('resize', function() {
location.reload();
Gallery.setOptions({
size: 78,
lightbox: false,
//animation: 'drop'
//speed: 500,
//closeOnEsc: true,
//slideshow: false,
//slideshow_speed: 3000,
//cube_speed: 1000
});
});
$(window).bind('resize', function() {
location.reload();
iphoneGallery.setOptions({
size: 78,
lightbox: false,
//animation: 'drop'
//speed: 500,
//closeOnEsc: true,
//slideshow: false,
//slideshow_speed: 3000,
//cube_speed: 1000
});
});