Reputation: 3165
Does anyone now a css3 way to fade in text from top, more precise to show text line by line with fade and some delay between them. I tried animating the opacity, positions, line-heights and so on but i didn't find the right combination. And my main problem is that i have a complicated background on my main content.
Upvotes: 1
Views: 225
Reputation: 11382
The line by line part can probably only be solved by setting the right keyframes and then calling the animation.
I could image solving this be setting a container div
to overflow: hidden
and then animating the height
of the container step by step with several keyframes.
Upvotes: 2