编程语言
首页 > 编程语言> > javascript – 使用Bootstrap和Masonry在页面上移动元素

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

作者:互联网

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

如何使网格元素在中心完美地加载页面.元素的转移看起来很丑陋.

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

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

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

只有在加载jQuery资产之后才能执行以下代码.是否有一种解决方法可以在网站加载时使网格元素完美地显示在中心.

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秒后重定向将发生.

希望能帮助到你.

标签:jquery,javascript,css,twitter-bootstrap,jquery-masonry
来源: https://codeday.me/bug/20190711/1431619.html