Revision: 55971
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at March 2, 2012 03:41 by LadyLoomis
Initial Code
$(function() {
// Set first div to show
$('.testimonials div:first').show();
// Begin the loop, fade out, find next div, fade that div in, end the process and append back to main div.
setInterval(function() {
$('.testimonials div:first-child').fadeOut().next('div').fadeIn().end().appendTo('.testimonials');
}, 5000);
)};
Initial URL
Initial Description
Simple jQuery fadeIn/Out continuous rotator.
Initial Title
Jquery FadeIn/Out Continuous Rotator
Initial Tags
simple, jquery
Initial Language
jQuery