1 .fadein { 2 animation: fadein linear 1s; 3 } 4 5 @keyframes fadein { 6 from { opacity: 0; } 7 to { opacity: 1; } 8 }

Linkerin