I’m trying to create a stack of cards that if you click will open out to reveal the individual cards. I created the stack and the behavior that reveals the cards but now want to add some animation of the cards moving into their new locations(as they are revealed).
http://jsfiddle.net/psivadasan/zbkBn/
Appreciate any help.
jQuery provides an awesome method called animate. You can animate any numeric CSS property. You use this quite easily to change the position of your card divs.
http://api.jquery.com/animate/
EDIT:
Here is an example for you:
http://jsfiddle.net/zbkBn/31/