luis-almeida / unveil

A very lightweight jQuery plugin to lazy load images
4.16k stars 676 forks source link

Display in sequence #125

Open ysanmiguel opened 7 years ago

ysanmiguel commented 7 years ago

Hello.

If there are 5 images in a row, how can I make it appear in random or sequence with a 0.2sec delay between each image?

Thank you!

$(document).ready(function() {
    $(".delay").unveil(100, function(){
        $(this).removeClass("loading");
    });
});