JSFiddle - React, Tailwind, and code Playground

HTML

<div id="quote">
    <blockquote>This is the First quote<span class="dim"><strong>1</strong></span>
    </blockquote>
    <blockquote>This is the First quote<span class="dim"><strong>2</strong></span>
    </blockquote>
</div>

JavaScript

var $quote = $('#quote');


function tick() {
    $('#quote:first').fadeIn(3000, function () { 
        setInterval(function () {}, 1000);
        $(this).appendTo($('#quote')).fadeOut(1000);
    });
}