这很可能是重复的,但我不知道JQuery并且刚刚复制/粘贴代码以达到这一点。我不明白为什么我的图像堆叠,直到我调整页面大小。这是我的代码:
$ ->
$('things').imagesLoaded ->
$('#things').masonry
itemSelector: '.box'
isFitWidth: true
答案 0 :(得分:3)
这不仅仅是jQuery而是jQuery + coffeescript。
这里是javascript(使用jQuery框架)代码的“翻译”:
$(function() {
$('things').imagesLoaded(function() {
$('#things').masonry({
itemSelector: '.box',
isFitWidth: true
});
});
});
在coffeescript中->
表示function
(对于匿名函数)。