Create slide effect using AngularJS?

angularjs, javascript

Solution

You might find AngularUI useful if you want to animate DOM object insertion (check the animate directive).

---- Update -----

Newer versions of Angular (1.1.4+ I believe) add a ngAnimate directive especially made for adding CSS animation to Angular apps. Check the offical docs (http://code.angularjs.org/1.1.4/docs/api/ng.directive:ngAnimate) or http://www.nganimate.org/.

Problem

I am new to AngularJS framework and I am trying to get slide effect same as jQuery provides, I did google too much but didn't find anything related to it. So if any one has any idea about that please guide me to achieve that thank you.

Original source

Related problems