Home › Forums › General Issues › Lazy Loading Images › Reply To: Lazy Loading Images
Hey John,
Thanks for getting back in touch about this. It turns out I wasn’t using all the possible options in the script. I had set it with just the very basic options.
The updated script looks like this now and seems to be working well:
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery(".lazy").lazy({
effect : "fadeIn", // this only works on images !
effectTime : 1000,
combined : true,
delay : 12500,
scrollDirection : 'vertical',
visibleOnly : false, // could be removed, it's default value
threshold : 2000,
defaultImage : "", // this is a bug, that the default image is set to non-images
// i'll updated this within the next version
afterLoad: function(element)
{
element.removeClass("loading").addClass("loaded");
}
});
});
</script>
Thanks!
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.