Created
April 9, 2024 16:11
-
-
Save Klerith/385338223f22374cdf48f0b91384c42e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.fade-in { | |
animation: fadeIn 0.3s; | |
-webkit-animation: fadeIn 0.3s; | |
-moz-animation: fadeIn 0.3s; | |
-o-animation: fadeIn 0.3s; | |
-ms-animation: fadeIn 0.3s; | |
} | |
@keyframes fadeIn { | |
0% {opacity:0;} | |
100% {opacity:1;} | |
} | |
@-moz-keyframes fadeIn { | |
0% {opacity:0;} | |
100% {opacity:1;} | |
} | |
@-webkit-keyframes fadeIn { | |
0% {opacity:0;} | |
100% {opacity:1;} | |
} | |
@-o-keyframes fadeIn { | |
0% {opacity:0;} | |
100% {opacity:1;} | |
} | |
@-ms-keyframes fadeIn { | |
0% {opacity:0;} | |
100% {opacity:1;} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
gracias fernando eres un crack!