gpt4 book ai didi

javascript - 使用 Bootstrap 和 Masonry 在页面上移动元素

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:41:44 28 4
gpt4 key购买 nike

我正在使用 Bootstrap 和 Masonry 制作一个网站。一切正常,但当页面加载时,前 2 秒元素从左移到中心。

我怎样才能使页面在网格元素完美居中的情况下立即加载。元素的移动看起来很难看。

代码:http://bl.ocks.org/bollwyvl/e77b3c9d3b322e511ecf

网站:http://bl.ocks.org/bollwyvl/raw/e77b3c9d3b322e511ecf/

我正在使用上面的代码。 (请刷新网站查看效果)。

它必须对仅在加载 jQuery Assets 后执行的以下代码执行某些操作。是否有一种变通方法可以使网格元素在网站加载时完美地显示在中心。

jQuery(window).bind('resize', function () {
if (!jQuery('#posts').parent().hasClass('container')) {
// Resets all widths to 'auto' to sterilize calculations

post_width = jQuery('#post').width() + gutter;
jQuery('#posts, body > #grid').css('width', 'auto');
// Calculates how many .post elements will actually fit per row. Could this code be cleaner?

posts_per_row = jQuery('#posts').innerWidth() / post_width;
floor_posts_width = (Math.floor(posts_per_row) * post_width) - gutter;
ceil_posts_width = (Math.ceil(posts_per_row) * post_width) - gutter;
posts_width = (ceil_posts_width > jQuery('#posts').innerWidth()) ? floor_posts_width : ceil_posts_width;
if (posts_width == jQuery('#post').width()) {
posts_width = '100%';
}
// Ensures that all top-level elements have equal width and stay centered

jQuery('#posts, #grid').css('width', posts_width);
jQuery('#grid').css({'margin': '0 auto'});
}
}).trigger('resize');

最佳答案

使用以下内容编写一个空白的白色 inde.html 页面

<meta http-equiv="refresh" content="0; url=http://example.com/" />

用这个文件名替换 http://example.com/。 0 表示 0 秒后将发生重定向。

希望对您有所帮助。

关于javascript - 使用 Bootstrap 和 Masonry 在页面上移动元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35956587/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com