jQuery画廊在IE中不起作用..但刷新后是否有效?

时间:2010-07-27 15:05:41

标签: javascript jquery internet-explorer

我正在使用jquery galleria

$(document).ready(function() {
    Galleria.loadTheme('js/galleria/themes/classic/galleria.classic.js');
    $('#galleria').galleria({
        image_crop: true,
        /*transition: 'fade',*/
        data_config: function(img) {
            return {
                description: $(img).next('p').html()
            };
        },
        extend: function() {
            this.play(6000); // will advance every 4th second
        }
    });
});

在Chrome中可以正常运行,Firefox中的加载速度很小。但在IE中它就像上面的代码永远不会被调用。如果我从未调用过上面的代码,那么图像就像它们一样布局。但是,只需刷新,IE就会开始正常工作。

任何可能导致这种情况发生的想法?

0 个答案:

没有答案