Mosijava
Mosijava

Reputation: 4189

Javascript that act like css3 transition

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

Answers (2)

ThinkingStiff
ThinkingStiff

Reputation: 65381

jQuery's .animate() will do this in a cross-browser way.

$( '.button' ).animate( { top: '-=50' }, 400 );

Upvotes: 2

Thariama
Thariama

Reputation: 50840

This tutorial seems to perfectly fit to your needs.

Upvotes: 2

Related Questions