Frank N.
Results
2
comments of
Frank N.
I use the following to fade in the images: js ``` jQuery('img.lazy').on('load', function(){ this.style.opacity = 1; }); jQuery('img.lazy').lazyload(); ``` css ``` img.lazy { opacity: 0; transition: opacity .2s ease-in-out; }...