类似下面的 CSS3 动画
div { animation: 3s linear 1s infinite running slidein; }
@keyframes slidein { from { transform: scaleX(0); } to { transform: scaleX(1); } }
用纯前端语言转成 video 或者 gif 。