0

I'm actually use Bootstrap collapse horizontally instead of Offcanvas Bootstrap collapse! . I would like to override the default collapse animation and use this style :

div {
    -webkit-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

Thanks in advance for you support and help.

0

You just need to attach it to the collapsing class. Something like:

.collapsing {
    -webkit-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}
|improve this answer|||||
  • Thanks joshhunt for your reply. It seems work only for vertically collapsing. I didn't found how can i override it that's why I have used bootstrap off canvas. – Maria Minh Jan 20 '15 at 20:26

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

Not the answer you're looking for? Browse other questions tagged or ask your own question.