gpt4 book ai didi

javascript - jQuery 砌体 : Images stacking until page resize

转载 作者:行者123 更新时间:2023-11-28 20:08:43 25 4
gpt4 key购买 nike

这很可能是重复的,但我不知道 JQuery,只是复制/粘贴代码才能达到这一点。在调整页面大小之前,我不明白为什么我的图像会堆叠起来。这是我的代码:

$ ->
$('things').imagesLoaded ->
$('#things').masonry
itemSelector: '.box'
isFitWidth: true

最佳答案

这不仅是 jQuery,而且是 jQuery + coffeescript .

这里是您的代码在 javascript 中的“翻译”(使用 jQuery 框架):

$(function() {
$('things').imagesLoaded(function() {
$('#things').masonry({
itemSelector: '.box',
isFitWidth: true
});
});
});

在coffescript中->表示function(用于匿名函数)。

关于javascript - jQuery 砌体 : Images stacking until page resize,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20271955/

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