JSFiddle - React, Tailwind, and code Playground

by shamaleyte

HTML

<div class="cardcontainer"><p>Hey yo</p></div>

CSS

@keyframes zoominoutsinglefeatured {
    0% {
        transform: scale(0.1);
    }
    33% {
        transform: scale(1.2,1.2);
    }
    66% {
        transform: scale(1,1);
    }
     100% {
        transform: scale(0.1);
    }
}

.cardcontainer p {
	animation: zoominoutsinglefeatured 5s ;
}