I use jquery to rotate my div one by one using fade effect but the effect is not smooth it jumps up and down and then display here is my fiddle.
$(document).ready(function(e) {
$('.testimonials div:first').show();
setInterval(function(){ $('.testimonials div:first-child').fadeOut().next('div').fadeIn().end().appendTo('.testimonials') },3000);
});
Add the following CSS:
This will put all the
.a
's on top of one and otherDEMO: http://jsfiddle.net/xXRwA/1/