JQuery Masonry:图像堆叠直到页面调整大小

JQuery Masonry: Images stacking until page resize

本文关键字:调整 Masonry 图像 JQuery      更新时间:2023-11-25

这很可能是重复的,但我不了解JQuery,只是复制/粘贴了代码。在调整页面大小之前,我不明白为什么我的图像是堆叠的。这是我的代码:

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

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

以下是javascript中代码的"翻译"(使用jQuery框架):

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

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