我使用 jquery 使用淡入淡出效果一一旋转我的 div,但效果不平滑它会上下跳跃然后显示在这里是我的小提琴。
$(document).ready(function(e) {
$('.testimonials div:first').show();
setInterval(function(){ $('.testimonials div:first-child').fadeOut().next('div').fadeIn().end().appendTo('.testimonials') },3000);
});