Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are the class names of transitions supported by twitter bootstrap?

What are the class names of transitions supported by twitter bootstrap? I know only one class name of a transition, as used in the example on the website: 'fade' for fading in. What are other class names of transitions supported by twitter bootstrap?

like image 384
Debiprasad Avatar asked Jan 29 '13 12:01

Debiprasad


1 Answers

These are the classes for the different transitions:

  • .fade (fade out)
  • .fade.in (fade in)
  • .collapse (collapse out)
  • .collapse.in (collapse in)

If you use the modal then the fade class adds animation to the modal

  • .fade (fade out to top 0)
  • .fade.in (fade in from top to 50% height)
like image 53
Plippie Avatar answered Nov 16 '22 06:11

Plippie