JSFiddle - React, Tailwind, and code Playground

by MAeSI

HTML

<div id="txtAni">Lorem ipsum</div>

CSS

@keyframes fade {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Chrome */
@-webkit-keyframes fade {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

#txtAni {
    animation: fade 1s infinite alternate;
    -webkit-animation: fade 1s infinite alternate;
}