gpt4 book ai didi

javascript - 在调整大小时更改 Masonry 的 columnWidth 选项

转载 作者:行者123 更新时间:2023-11-30 10:44:31 24 4
gpt4 key购买 nike

我正在使用这个插件:http://masonry.desandro.com/

我目前为 960px 布局初始化插件,我的代码是:

<script>

$(function(){

var $container = $('#container');

$container.imagesLoaded( function(){
$container.masonry({
itemSelector : '.box',
gutterWidth: 8,
// Want to change this here:
columnWidth: 113
});
});

});
</script>

当屏幕宽度或浏览器窗口宽度高于 1225px 时,我想将 columnWidth 数字从 113 更改为 146。我该怎么做?

最佳答案

columnWidth: $(document).width() > 1225 ? 146 : 113

关于javascript - 在调整大小时更改 Masonry 的 columnWidth 选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9195840/

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