mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-18 01:50:36 +01:00
d63e022485
Optimising for hardware acceleration, removing duplicate animations (slides), bumping tag
14 lines
176 B
CSS
14 lines
176 B
CSS
@keyframes fadeOutRight {
|
|
0% {
|
|
opacity: 1;
|
|
}
|
|
|
|
100% {
|
|
opacity: 0;
|
|
transform: translate3d(100%, 0, 0);
|
|
}
|
|
}
|
|
|
|
.fadeOutRight {
|
|
animation-name: fadeOutRight;
|
|
}
|