I think I noticed that all jQuery transitions (e.g. slide effect) work in a linear way. That means that the speed of the animation never changes.
I wondered if it would be possible to change this to a more quadratic behavior. That means, I want the animation to slowly start and then get faster.
Is there a way in jQuery to accomplish this?
I don’t think that’s true, most jQuery function have an easing parameter (fadeIn/out, slideDown/up)
If you use slideDown (i make an example) you can specify an
easingoption which defaults toswing. If you want itlinearyou must specify itTaken from the docs