Isotope Jquery Plugin Doesn't Show Properly On Chrome
I implanted Isotope jquery plugin successfully but for some reason I get problem showing all the items when the page is loaded first time and it's only on Chrome. You can see here
Solution 1:
The problem is probably that Isotope is doing its thing before the images are loaded.
http://isotope.metafizzy.co/demos/images.html
[In this demo] Isotope is triggered after all images are loaded with the imagesLoaded plugin.
http://isotope.metafizzy.co/docs/help.html#imagesloaded_plugin
var$container = $('#container');
$container.imagesLoaded(function() {
$container.isotope({
// options...
});
});
Post a Comment for "Isotope Jquery Plugin Doesn't Show Properly On Chrome"