Javascript that act like css3 transition
css, css-transitions, javascript, jquery
Solution
jQuery's `.animate()` will do this in a cross-browser way.
$( '.button' ).animate( { top: '-=50' }, 400 );
Problem
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