gpt4 book ai didi

jQuery Masonry 和媒体查询 - 重新加载 masonry

转载 作者:行者123 更新时间:2023-12-03 23:00:59 27 4
gpt4 key购买 nike

我的网站设计了媒体查询,以覆盖不同大小的布局。我有砌体组织一堆全尺寸宽度的浮标,没问题。在移动宽度下,所有浮子都会浮起并堆叠在一起。所以我只需要在网站大小调整为平板电脑布局且 768px <= width <= 1000px 时重新运行 masonry。

<script type="text/javascript">
//<![CDATA[

$(document).ready(function($){

$('ul.xoxo').masonry({ singleMode: true, itemSelector: '.widgetcontainer' });

//If the User resizes the window, adjust the #container height
$(window).bind("resize", resizeWindow);
function resizeWindow( e ) {
var newWindowWidth = $(window).width();

if(newWindowWidth<1008){
$('ul.xoxo').masonry();
} else {
$('ul.xoxo').masonry();
}
}

});

/* ]]> */
</script>

这对我来说还不起作用,但我也不希望它在所有调整大小上运行......只是在断点处。

最佳答案

对于这些情况,您可以使用 Masonary 的 isRessized 选项。

  $container.masonry({
itemSelector: '.box',
isResizable: true
});

关于jQuery Masonry 和媒体查询 - 重新加载 masonry,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5849535/

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