mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-14 00:01:09 +01:00
54 lines
No EOL
747 B
CSS
54 lines
No EOL
747 B
CSS
@-webkit-keyframes fadeInLeft {
|
|
0% {
|
|
opacity: 0;
|
|
-webkit-transform: translateX(-20px);
|
|
}
|
|
|
|
100% {
|
|
opacity: 1;
|
|
-webkit-transform: translateX(0);
|
|
}
|
|
}
|
|
|
|
@-moz-keyframes fadeInLeft {
|
|
0% {
|
|
opacity: 0;
|
|
-moz-transform: translateX(-20px);
|
|
}
|
|
|
|
100% {
|
|
opacity: 1;
|
|
-moz-transform: translateX(0);
|
|
}
|
|
}
|
|
|
|
@-ms-keyframes fadeInLeft {
|
|
0% {
|
|
opacity: 0;
|
|
-ms-transform: translateX(-20px);
|
|
}
|
|
|
|
100% {
|
|
opacity: 1;
|
|
-ms-transform: translateX(0);
|
|
}
|
|
}
|
|
|
|
@keyframes fadeInLeft {
|
|
0% {
|
|
opacity: 0;
|
|
transform: translateX(-20px);
|
|
}
|
|
|
|
100% {
|
|
opacity: 1;
|
|
transform: translateX(0);
|
|
}
|
|
}
|
|
|
|
.fadeInLeft {
|
|
-webkit-animation-name: fadeInLeft;
|
|
-moz-animation-name: fadeInLeft;
|
|
-ms-animation-name: fadeInLeft;
|
|
animation-name: fadeInLeft;
|
|
} |