Animation Iteration
Preview
Code
<style>
.box{
width:80px;
height:80px;
background:#2563eb;
animation:bounce 0.6s ease 4;
}
@keyframes bounce{
0%{transform:translateY(0);}
50%{transform:translateY(-20px);}
100%{transform:translateY(0);}
}
</style>
<div class="box"></div>