JSFiddle - React, Tailwind, and code Playground

HTML

<div id="images">
    <img height="150" src="http://www.10puntos.com/wp-content/uploads/2009/09/fotos_mas_vistas_de_flickr_caperucita_roja_thumb1.jpg" alt="" />
        <img height="150" src="http://i275.photobucket.com/albums/jj309/orient_sky2612/73436579.jpg" alt="" />
        <img height="150" src="http://i685.photobucket.com/albums/vv214/Johnny_938/Arte_retro.jpg" alt="" />
        <img height="150" src="http://i228.photobucket.com/albums/ee212/BellaDotka/art%20abstract/Art/2439591kza1nvn384.jpg" alt="" />
    <img height="150" src="http://i0006.photobucket.com/albums/0006/findstuff22/Best%20Images/Art%20best%20images/a58b76f2.jpg" alt="" />
        <img height="150" src="http://guayaquilcaliente.com/chicas/wp-content/uploads/2010/11/155695_472666451440_326834186440_6016077_7031606_n.jpg" alt="" />
        <img height="150" src="http://www.dogguie.com/wp-content/uploads/2010/12/victoria-secret-modelos-12.jpg" alt="" />
        <img height="150" src="http://i228.photobucket.com/albums/ee212/BellaDotka/art%20abstract/Art/2439591kza1nvn384.jpg" alt="" />
    <img height="150" src="http://i0006.photobucket.com/albums/0006/findstuff22/Best%20Images/Art%20best%20images/a58b76f2.jpg" alt="" />
       
</div>

CSS

img { display: none; }

JavaScript

$.fn.fade1by1 = function(options) {
    var opt = $.extend({
        'delay': 500,
        'speed': 500,
        'ease': 'linear'
    }, options);
    var that = this;
    for (var i = 0, d = 0, l = that.length; i < l; i++, d += opt.delay) {
        that.eq(i).delay(d).fadeIn(opt.speed, opt.ease);
    }
};

$('#images img').fade1by1({ speed: 400, delay: 200 });