Skip to content

Instantly share code, notes, and snippets.

@koluku
Last active August 29, 2015 13:57
Show Gist options
  • Save koluku/9410259 to your computer and use it in GitHub Desktop.
Save koluku/9410259 to your computer and use it in GitHub Desktop.
jQuery Masonryのカラム構成時における指定の方法 StackOverflowで見つけた解決方法。参考にしたURLが見つからなかったためここに保存
var $container = $(".js-masonry");
$container.masonry("bindResize", {
columnWidth: function(containerWidth) {
return containerWidth /4;
},
itemSelector: ".js-masonry__item"
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment