We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
can we fade in the images instead of just popup?
The text was updated successfully, but these errors were encountered:
I would love having this feature enabled in 2.x. Just a simple fadeIn when images are loaded.
Sorry, something went wrong.
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; }
No branches or pull requests
can we fade in the images instead of just popup?
The text was updated successfully, but these errors were encountered: