hi-ucs/node_modules/_animate.css@4.1.1@animate.css/source/back_entrances/backInLeft.css

21 lines
278 B
CSS
Raw Normal View History

2022-08-16 09:55:42 +08:00
@keyframes backInLeft {
0% {
transform: translateX(-2000px) scale(0.7);
opacity: 0.7;
}
80% {
transform: translateX(0px) scale(0.7);
opacity: 0.7;
}
100% {
transform: scale(1);
opacity: 1;
}
}
.backInLeft {
animation-name: backInLeft;
}