.about5 {
animation:
fade 4s ease forwards; animation-delay: 5s;}
@keyframes fade {
0% { opacity: 0; }
50% { opacity: 1; }
100% { opacity: 0;}}
<div class="about5">About</div>
The animation delays for 5s correctly, but before fading, flashes once. Why? Is this because I'm using ease
and should I use linear
?
Page on desktop here.