Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 28th, 2012  |  syntax: None  |  size: 0.38 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. /* settings */
  2. var showDuration = 6000,
  3.     container = $('#yoga_wrapper'),
  4.     images = container.find('img').css({"opacity":"0"}),
  5.     currentIndex = 0;
  6. /* worker */
  7. var show = function() {
  8.   $(images[currentIndex]).animate({"opacity":0});
  9.   $(images[currentIndex = currentIndex < images.length - 1 ? currentIndex + 1 : 0]).animate({"opacity":1});
  10. };
  11.  
  12. window.setInterval(show, showDuration);