Text Lines Fade In

I would like to have several lines of text fade in from a “just barely readable” to “normal text” one line at a time.

Is there an easy way to do this with jquery?:confused:

Have a read of the following post as it has a few different methods of how to achieve part of what you need.

http://stackoverflow.com/questions/379900/fade-in-each-element-one-after-another

To make it so the lines are opaque you could use something like the below code given you have a class associated with each element.

$('.myElement').css('opacity', 0.3);

Yes, there are some good ideas on that reference page.
I was looking for something that could break the text up by lines itself, and then
display them, but for the few amount of lines now, I can use the code.

Once this project is done I will work on doing the auto split and display.

Thanks your for help!:cool: