作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我应该如何修改脚本来初始化 Masonry,或重新排列脚本的顺序。
我在我创建的其他网站上也遇到过类似的问题,但目前我正在构建的 Tumblr 主题上有类似的问题 http://divedemo.tumblr.com/
我正在测试主题。错误的结果是图像堆叠得太紧密。我之前的研究表明这是因为盒子没有设定高度。但到目前为止我找到的解决方案并没有考虑到响应式网站。
我进入控制台查看发生了什么
mmasonry.pkgd.js:62 cannot call methods on masonry prior to initialization; attempted to call 'reload'
<script src="https://cdnjs.cloudflare.com/ajax/libs/masonry/3.3.2/masonry.pkgd.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.imagesloaded/4.1.0/imagesloaded.pkgd.min.js"></script>
<script>
$(document).ready(function() {
// Initialize Masonry
$('#content').masonry({
columnWidth: 320,
itemSelector: '.item',
isFitWidth: true,
isAnimated: !Modernizr.csstransitions
}).imagesLoaded(function() {
$(this).masonry('reload');
});
});
</script>
最佳答案
试试这个,
$(document).ready(function() {
$('#content').imagesLoaded(function() {
$('#content').masonry({
columnWidth: 320,
itemSelector: '.item',
isFitWidth: true
})
});
});
关于javascript - mmasonry.pkgd.js :62 cannot call methods on masonry prior to initialization; attempted to call 'reload' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38620049/
问题 我应该如何修改脚本来初始化 Masonry,或重新排列脚本的顺序。 背景 我在我创建的其他网站上也遇到过类似的问题,但目前我正在构建的 Tumblr 主题上有类似的问题 http://dived
我对最新版本的砌体有一个奇怪的问题。之前让它工作,但对于一个新项目,我下载了最新版本的 jQuery 和 Masonry,一切正常。由于插件中的错误,IE7 不会加载 Masonry 库。 我在 IE
我是一名优秀的程序员,十分优秀!