JSFiddle - React, Tailwind, and code Playground
HTML
<div class="zoom" id="zoomimg"></div>
CSS
.zoom {
background-color: green;
transition: transform .2s;
width:100%;
height: 200px;
animation:blinkerBg 2s 10000;
}
@keyframes blinkerBg{50%{transform:scale(1.5)}}