我正在制作一个蒙太奇主题,我有一个巨大的IE错误,我认为它是一个图像。加载问题。我已经尝试将.Load事件添加到图像中,以便在页面加载后它们可以正常工作。我也尝试过使用图像缓存脚本。
这是montage.js文档中的信息样本
// $('#my-container').imagesLoaded(myFunction)
// execute a callback when all images have loaded.
// needed because .load() doesn't work on cached images
我尝试过使用imageLoaded,但一直没看。
这是我目前的代码,
<!-- Montage Requirments -->
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/montage.js"></script>
<script type="text/javascript">
$(function() {
var $container = $('#am-container'),
$imgs = $container.find('img').hide();
$(window).load(function() {
$imgs.show();
$container.montage({
fillLastRow : true,
alternateHeight : true,
alternateHeightRange : {
min : 150,
max : 250
},
margin : 0
});
});
});
</script>
<!-- Montage Finished -->
答案 0 :(得分:0)
也许尝试Wordpress'没有冲突包装?