我尝试使用它:
$(window).smartresize(function(){
}).smartresize();
使用isotope.pkgd.min.js,但它说“undefined不是一个函数”。聪明的是什么?我看同位素来源并没有聪明的感觉。
我在问我应该怎样做才能为同位素插件提供smartresize()函数。当我在我的html中包含isotope.pkgd.min.js时,它不起作用。
答案 0 :(得分:1)
我所拥有的同位素包中包含来自https://github.com/louisremi/jquery-smartresize的smartresize。您是否尝试将该js添加到页面中?
答案 1 :(得分:1)
试试这个(同位素v1)
var $container = $('#container') // or whatever your ID is.
// initialize Isotope
$container.isotope({
// options... Add other options here
resizable: false
});
$(window).smartresize(function(){
$container.isotope();
});