Reputation: 4189
I want to do something like -moz-transition
effect that give me a animated rotate picture. or move a picture from bottom of it's wrapper to top of it.
for clarify how I want just take a look at This Link and see the four pictures that are under slider.
It uses -moz-transition
CSS3 effect but I want to have something with js or jQuery to animate it even in IE.
Is there any plugin for it?
Thanks alot
Upvotes: 6
Views: 172
Reputation: 65381
jQuery's .animate()
will do this in a cross-browser way.
$( '.button' ).animate( { top: '-=50' }, 400 );
Upvotes: 2