Imagine you have a div called A and an array filled with text data.
When t=0, div A will display $data[0]
. Then, after every n
seconds, I want the div to show the next piece of data in the array.
I am interested in creating a transition effect similar to this slideshow effect. This effect involves having $data[n]
slowly slide from the center of the div to the bottom while simultaneously having $data[n+1]
slide from the top to the center of the div.
Can this be achieved using jQuery?