mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-19 02:20:35 +01:00
b3fae9fe00
Since IE10 dropped the animation, transform, and transition prefixes, and no stable release was made with them, we can safely drop the prefixes, too. Cutting a good 20% off the file sizes!
62 lines
No EOL
1 KiB
CSS
62 lines
No EOL
1 KiB
CSS
@-webkit-keyframes rotateOutUpRight {
|
|
0% {
|
|
-webkit-transform-origin: right bottom;
|
|
-webkit-transform: rotate(0);
|
|
opacity: 1;
|
|
}
|
|
|
|
100% {
|
|
-webkit-transform-origin: right bottom;
|
|
-webkit-transform: rotate(90deg);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@-moz-keyframes rotateOutUpRight {
|
|
0% {
|
|
-moz-transform-origin: right bottom;
|
|
-moz-transform: rotate(0);
|
|
opacity: 1;
|
|
}
|
|
|
|
100% {
|
|
-moz-transform-origin: right bottom;
|
|
-moz-transform: rotate(90deg);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@-o-keyframes rotateOutUpRight {
|
|
0% {
|
|
-o-transform-origin: right bottom;
|
|
-o-transform: rotate(0);
|
|
opacity: 1;
|
|
}
|
|
|
|
100% {
|
|
-o-transform-origin: right bottom;
|
|
-o-transform: rotate(90deg);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@keyframes rotateOutUpRight {
|
|
0% {
|
|
transform-origin: right bottom;
|
|
transform: rotate(0);
|
|
opacity: 1;
|
|
}
|
|
|
|
100% {
|
|
transform-origin: right bottom;
|
|
transform: rotate(90deg);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
.rotateOutUpRight {
|
|
-webkit-animation-name: rotateOutUpRight;
|
|
-moz-animation-name: rotateOutUpRight;
|
|
-o-animation-name: rotateOutUpRight;
|
|
animation-name: rotateOutUpRight;
|
|
} |