Pulse Animation
Preview
Code
<style>
.box{
width:80px;
height:80px;
background:#22c55e;
animation:pulse 1.5s infinite;
}
@keyframes pulse{
0%{transform:scale(1);}
50%{transform:scale(1.2);}
100%{transform:scale(1);}
}
</style>
<div class="box"></div>