Given the following animation:
@keyframes slidein { from { transform: scaleX(0); } to { transform: scaleX(1); } }
animation: 3s ease-in 1s 2 reverse both paused slidein;
animation: 3s linear 1s slidein;
animation: 3s slidein;