animate.css/source/fadeOut.css

32 lines
492 B
CSS
Raw Normal View History

2011-10-14 14:39:11 +02:00
@-webkit-keyframes fadeOut {
0% {opacity: 1;}
100% {opacity: 0;}
}
@-moz-keyframes fadeOut {
0% {opacity: 1;}
100% {opacity: 0;}
}
@-ms-keyframes fadeOut {
0% {opacity: 1;}
100% {opacity: 0;}
}
2011-10-20 21:14:38 +02:00
@-o-keyframes fadeOut {
0% {opacity: 1;}
100% {opacity: 0;}
}
2011-10-14 14:39:11 +02:00
@keyframes fadeOut {
0% {opacity: 1;}
100% {opacity: 0;}
}
.fadeOut {
-webkit-animation-name: fadeOut;
-moz-animation-name: fadeOut;
-ms-animation-name: fadeOut;
2011-10-20 21:14:38 +02:00
-o-animation-name: fadeOut;
2011-10-14 14:39:11 +02:00
animation-name: fadeOut;
}