Jquery Testimonial fader does not work smoothly

后端 未结 3 1162
心在旅途
心在旅途 2021-01-27 02:58

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.

http://jsfiddle.net/xXRw

3条回答
  •  醉梦人生
    2021-01-27 03:46

    Add the following CSS:

    .testimonials {
        position: relative;
    }
    
    .testimonials .a {
        position: absolute;
    }
    

    This will put all the .a's on top of one and other

    DEMO: http://jsfiddle.net/xXRwA/1/

提交回复
热议问题