1 2 3 4 5 6 7 8
@keyframes fadeIn { from {opacity: 0;} 100% {opacity: 1;} } .fadeIn { animation-name: fadeIn; }