【发布时间】:2015-06-24 05:32:58
【问题描述】:
我使用 jquery 使用淡入淡出效果将我的 div 一个一个旋转,但效果不流畅 它上下跳跃然后显示 这是我的小提琴。
$(document).ready(function(e) {
$('.testimonials div:first').show();
setInterval(function(){ $('.testimonials div:first-child').fadeOut().next('div').fadeIn().end().appendTo('.testimonials') },3000);
});
【问题讨论】:
标签: jquery fade testimonials