Support

Account

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!