我正在开发一个使用 jQuery 来实现仿列效果的网站。这是一个测试页面:http: //goo.gl/IL3ZB。左边的黄色<aside>
高度是用.body_container
div 的高度在 java 脚本中设置的。高度设置正确以进行显示。
问题是,当我在 Firefox 17 中进行完全刷新(Shift + F5)时,<aside>
它会以正确的高度正确显示,但 js 中的动画高度要小得多。当我然后正常刷新页面时,java脚本也会看到正确的高度。
我该如何解决这个问题?
这是我的js:
var floating_patents_bottom = 0;
$(window).load(function(){
$('.floating_patents').height( $('.body_container').height() );
floating_patents_bottom = ($('.body_container').height() > floating_patents_bottom ? $('.body_container').height() : floating_patents_bottom);
var toBottom = {
'top': floating_patents_bottom
};
});
var toTop = {
'position': 'absolute',
'top': '500px',
'display': 'none'
};
$(document).ready(function(){
$('.floating_patents').height( $('.body_container').height() );
floating_patents_bottom = ($('.body_container').height() > floating_patents_bottom ? $('.body_container').height() : floating_patents_bottom);
// floating_patents_bottom = $('.floating_patents').height();
var toBottom = {
'top': floating_patents_bottom
};
var patents = $(".floating_patents img");
patents.css(toTop);
patents.each(function(index) {
$(this).delay(index * 5000).css('margin','10px auto').fadeIn("slow").animate(toBottom , 15000, function(){
$(this).fadeOut("slow");
});
});
});