mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-19 02:20:35 +01:00
d63e022485
Optimising for hardware acceleration, removing duplicate animations (slides), bumping tag
16 lines
267 B
CSS
16 lines
267 B
CSS
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
|
|
|
|
@keyframes rollOut {
|
|
0% {
|
|
opacity: 1;
|
|
}
|
|
|
|
100% {
|
|
opacity: 0;
|
|
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
|
|
}
|
|
}
|
|
|
|
.rollOut {
|
|
animation-name: rollOut;
|
|
}
|