Transitions are done with CSS, not with javascript.

Look at component-animations.less, or search the css for transition

LESS code:
.fade { .transition(opacity .15s linear); opacity: 0; &.in { opacity: 1; }
} .collapse { .transition(height .35s ease); position:relative;
overflow:hidden; height: 0; &.in { height: auto; } }

You can change the speed bij changing the 0.15s of 0.35s. When you have
compiled css, you have to change more occurences, because of the prefixes.

On Tue, May 1, 2012 at 08:42, Stoosh <[email protected]> wrote:

> Hello,
>
> I was wondering if you can change the speed of the transitions for plugins
> such as collapse, I find for some UI elements they just show/hide too fast.
>
> Looking through the collapse.js and transition.js, and doesn't look like
> it's possible just thought there might've been a way :)
>
> Thanks
> Michael
>

Reply via email to