• thewestharbour

    (@thewestharbour)


    Hi,

    I need to be able to change the transition speed of the carousel.
    By this, I mean how fast it actual slides (not the interval)

    If you could help point me in the right direction, it’d be much appreciated.

Viewing 1 replies (of 1 total)
  • Plugin Author Andrés Villarreal

    (@andrezrv)

    Hi there,

    Something like this in your CSS should do the trick:

    .carousel-inner > .item {
        -webkit-transition: -webkit-transform 1s ease-in-out;
        -o-transition: -o-transform 1s ease-in-out;
        transition: transform 1s ease-in-out;
    }
    

    Just change the “1s” value to the actual speed you need.

    Hope this helps.

    Best,

    Andrés.

Viewing 1 replies (of 1 total)
  • The topic ‘Change Transition Speed’ is closed to new replies.