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
I have add data-echo to all my images but most of the time just the first image is shown while the other still show the loader.
data-echo
This is my html:
<div class="image"> <img src="img/loader-img.gif" data-echo="img/example.jpg" alt="title"> </div>
and this is my code:
echo.init({ offset: 100, throttle: 250, unload: false, callback: function (element, op) { $(element).parent().closest('div').addClass('imgLiquidFill imgLiquid'); $(".imgLiquidFill").imgLiquid(); } });
the callback are called just once, so only the first element will add the imgLiquid class. How can I solve?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have add
data-echo
to all my images but most of the time just the first image is shown while the other still show the loader.This is my html:
and this is my code:
the callback are called just once, so only the first element will add the imgLiquid class.
How can I solve?
The text was updated successfully, but these errors were encountered: