JSFiddle - React, Tailwind, and code Playground

by lun471k

JavaScript

var src = "https://media.licdn.com/media/p/7/005/02b/258/20ad269.jpg",
    i = 0,
    elem = null,
    body = $('body');

for (i; i < 100; i++) {
    elem = document.createElement('img');
    elem.src = src;
    elem.style.display = "none";
    body.append(elem);
}

$('img').each(function () {
    $(this).fadeIn(Math.random() * 50000);
});