Friends like that would make the animation came back as smoothly as back and forth?
Here's a simple example lifted on codepin
https://codepen.io/Cheizer/pen/KQpMKQ
Use the animation scale, but suddenly jerks forward picture, ago smoothly well. As increased make is also smooth?
#loader {
animation-name: scale;
animation-duration: 1s;
animation-iteration-count: infinite;
animation-timing-function: cubic-bezer(1, .01, 0, 1.01);
transform-origin: 50% 50%
}
@keyframes scale {
0 {
transform: scale(.9)
}
30% {
transform: scale(1)
}
100% {
transform: scale(.9)
}
}