Jquery FadeIn/Out连续旋转器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jquery FadeIn/Out连续旋转器相关的知识,希望对你有一定的参考价值。
Simple jQuery fadeIn/Out continuous rotator.
$(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); )};
以上是关于Jquery FadeIn/Out连续旋转器的主要内容,如果未能解决你的问题,请参考以下文章