JSFiddle - React, Tailwind, and code Playground
HTML
<div>
❤
</div>
CSS
@keyframes heartbeat
{
0%
{
transform: scale( .75 );
}
20%
{
transform: scale( 1 );
}
40%
{
transform: scale( .75 );
}
60%
{
transform: scale( 1 );
}
80%
{
transform: scale( .75 );
}
100%
{
transform: scale( .75 );
}
}
div
{
color:red;
width: 10px;
height: 10px;
animation: heartbeat 1s infinite;
}