<div class="container-2">
<div class="box-2"></div>
</div>
<style>
.container-2 {
height: 6em;
}
.box-2 {
animation: 5s linear 0s 1 an2;
animation-fill-mode: both;
width: 3em;
height: 3em;
background: pink;
}
@keyframes an2 {
0% {
width: 6em;
}
25% {
width: 9em;
}
50% {
width: 12em;
}
100% {
width: 3em;
}
}
</style>