So I have 4 divs, I want one to fade to 1, another to fade to 0.8, and so on. I have
@keyframes fadeIn {
from { opacity: 0 }
to { opacity: 1 }
}
with the opacity of each div set to 1, 0.8, 0.6, etc. Is there a way I can make it so they go their desired opacity without them all fading to 1 then snapping to whatever their value is on their element?
transition.