You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
391 B
26 lines
391 B
7 years ago
|
@-webkit-keyframes fadeIn {
|
||
|
0% {opacity: 0;}
|
||
|
100% {opacity: 1;}
|
||
|
}
|
||
|
|
||
|
@-moz-keyframes fadeIn {
|
||
|
0% {opacity: 0;}
|
||
|
100% {opacity: 1;}
|
||
|
}
|
||
|
|
||
|
@-o-keyframes fadeIn {
|
||
|
0% {opacity: 0;}
|
||
|
100% {opacity: 1;}
|
||
|
}
|
||
|
|
||
|
@keyframes fadeIn {
|
||
|
0% {opacity: 0;}
|
||
|
100% {opacity: 1;}
|
||
|
}
|
||
|
|
||
|
.fadeIn {
|
||
|
-webkit-animation-name: fadeIn;
|
||
|
-moz-animation-name: fadeIn;
|
||
|
-o-animation-name: fadeIn;
|
||
|
animation-name: fadeIn;
|
||
|
}
|