jqueryを使用して、フェード効果を使用してdivを1つずつ回転させますが、効果は滑らかではなく、上下にジャンプしてから、ここに私のフィドルが表示されます。
$(document).ready(function(e) {
$('.testimonials div:first').show();
setInterval(function(){ $('.testimonials div:first-child').fadeOut().next('div').fadeIn().end().appendTo('.testimonials') },3000);
});