thesimpledesigner
thesimpledesigner

Reputation: 57

Jquery/Javascript Animation

How would I go about making divs appear and disappear in sequential order? My plan is to have a 6 different divs: 1-6 appear in sequential order. Then after a couple of seconds, they will disappear (6-1) and reappear in sequential order again.

Upvotes: 0

Views: 86

Answers (1)

Thinker
Thinker

Reputation: 14464

I think that should do the trick:

for(var i=0;i<6;i++)
  $('#div'+i).delay(i*500).fadeIn().delay(4000-i*500).fadeOut();

.delay() was introduced in jQuery 1.4.

Upvotes: 2

Related Questions