I was having an issue with the first image in a packery id container shifting up and down as I resized the browser window. The fix I found was to load all images first then Packery, and it has a sweet documentation page describing two ways to do this, but I used imagesLoaded:
var container = document.querySelector('#container');
var pckry;
// initialize Packery after all images have loaded
imagesLoaded( container, function() {
pckry = new Packery( container );
});
Or the jQuery way:
var $container = $('#container');
// initialize Packery after all images have loaded
$container.imagesLoaded( function() {
$container.packery({
// options...
itemSelector: '.item',
transitionDuration: '0.8s'
});
});
Here’s how I installed it (first go get ImagesLoaded js) and replace () for <> around the script tags in the code (I had to use parens so the code would show on this post):
(script src="/static/javascripts/vendor/packery.pkgd.js")(/script)
(script src="/static/javascripts/vendor/imagesloaded.pkgd.js")(/script)
(script)
var container = document.querySelector('#packeryContainer');
var $pckry;
var $pckry = new Packery( container, {
// options
itemSelector: '.jsp-item',
stamp: '.packery-stamp',
gutter: 0,
});
// initialize Packery after all images have loaded
imagesLoaded( container, function() {
$pckry = new Packery( container );
});
(/script)
How do you implement it on you site? it dosent seem to work for me. I have tried to put the code in a script tag.
Hi, go to the link I posted in the article for implementation documentation. Basically you need the images loaded js and wrap that around the packery load. I’ll find an example and post it to the article.
Ok, thank you! i am initiating packery with html like this:
So i dont really have a packery load? or do i ?
Hi Christoffer, I updated this post with a code example. First 1. Load packery and imagesloaded js files 2. call packery with a callback to imagesloaded which makes packery wait till images are loaded.
Thank you for taking the time!!! im not shure which parts i shuld change to make it fit my own site. I have tried changing: #packeryContainer to #content but it doesent seem to work?