JSFiddle - React, Tailwind, and code Playground

HTML

<body>
    <!-- Pack -->
    <img id="pack" src="http://cloud.attackofthefanboy.com/wp-content/uploads/2013/07/fifa14pack.png">
    <!-- Sparkles-->
    <div id="sparkles">
        <img id="sparkle1" src="http://www.clker.com/cliparts/w/L/F/v/7/8/sparkle-md.png"/>
            <img id="sparkle2" src="http://www.clker.com/cliparts/w/L/F/v/7/8/sparkle-md.png"/>
            <img id="sparkle3" src="http://www.clker.com/cliparts/w/L/F/v/7/8/sparkle-md.png"/>
            <img id="sparkle4" src="http://www.clker.com/cliparts/w/L/F/v/7/8/sparkle-md.png"/>
            <img id="sparkle5" src="http://www.clker.com/cliparts/w/L/F/v/7/8/sparkle-md.png"/>
            <img id="sparkle6" src="http://www.clker.com/cliparts/w/L/F/v/7/8/sparkle-md.png"/>
            <img id="sparkle7" src="http://www.clker.com/cliparts/w/L/F/v/7/8/sparkle-md.png"/>
        <img id="sparkle8" src="http://www.clker.com/cliparts/w/L/F/v/7/8/sparkle-md.png"/>
    </div>

CSS

html, body {
        width: 100%;
        height: 100%;
       
        background-color: white;
    }
     
    #pack {
        position: absolute;
        top: 50%;
        left: 50%;
        height: 300px;
        width: 200px;
        margin-top: -100px;
        margin-left: -100px;
    }
     
    #sparkle1 {
        position: absolute;
        top: -8%;
        left: 50%;
        height: 140px;
        width: 150px;
    }
     
    #sparkle2 {
        position: absolute;
        top: 90%;
        left: 57%;
        height: 180px;
        width: 155px;
    }
     
    #sparkle3 {
        position: absolute;
        top: 94%;
        left: 29%;
        height: 140px;
        width: 115px;
    }
     
    #sparkle4 {
        position: absolute;
        top: 25%;
        left: 86%;
        height: 150px;
        width: 123px;
    }
     
    #sparkle5 {
        position: absolute;
        top: 20%;
        right: 83%;
        height: 145px;
        width: 118px;
    }
     
    #sparkle6 {
        position: absolute;
        top: 79%;
        right: 82%;
        height: 150px;
        width: 120px;
    }
     
    #sparkle7 {
        position: absolute;
        top: 52%;
        right: 85%;
        height: 150px;
        width: 130px;
    }
     
    #sparkle8 {
        position: absolute;
        top: 50%;
        left: 85%;
        height: 180px;
        width: 160px;
    }
     
    #sparkles {
        position: absolute;
        top: 50%;
        left: 50%;
     
        width: 500px;
        height: 500px;
        margin-top: -250px;
        margin-left: -250px;
    }

JavaScript

// Define a random integer function
function random(n) {
    return Math.floor(Math.random() * n);
}

// Define some variables, hide all images and show just one of them.
var transition_time = 500;
var waiting_time = 500;
var images = $('div#sparkles img');
var n = images.length;
var current = random(n);

images.hide();
images.eq(current).show();

// Periodically, we fadeOut the current image and fadeIn a random one
var interval_id = setInterval(function () {
    images.eq(current).fadeOut(transition_time, function () {
        current = random(n);
        images.eq(current).fadeIn(transition_time);
    });
}, 2 * transition_time + waiting_time);

// You can then stop the effect with:
//clearInterval(interval_id);