JSFiddle - React, Tailwind, and code Playground

by wrxsti85

HTML

<div class="slider">
    <span class="slide">Top Schools, big scholarships, real careers...College recruitment made easy!</span>
    <span class="slide">Top Schools, big scholarships, real careers...College recruitment made easy!</span>
    <span class="slide">Top Schools, big scholarships, real careers...College recruitment made easy!</span>
    <span class="slide">Top Schools, big scholarships, real careers...College recruitment made easy!</span>
</div>

CSS

.slide {
    position: absolute;
    display: none;
}

JavaScript

$(function(){
    $('.slide').each(function(){
        $(this).show();
        
    });
});