Peekaboo Pantone Demo

A simple demo that uses Peekaboo to animate 500 list items as they scroll into view is shown below. A demo that covers lazyloading responsive images is also available.

peekaboo.observe({
    pattern: '.lazyAnimation',
    callback: function(elemArray) {
        elemArray.forEach(function(elem) {
            elem.className = '';
        })
    }
});
The peekaboo.observe call made within the demo

A fixed height wrapper with overflow test

That’s all folks…