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.
4 Answers
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/.

- 13,725
- 6
- 33
- 33
You can (and should) use the jQuery slide, but wrap it in an angular directive. Check the docs about directives and also this video.

- 22,016
- 18
- 111
- 153
In general, you should not be using jQuery directly with Angular, even in directives. It is a last resort. Here is another good post on the topic here on SO.
-
2I think the jury is still out on wrapping jquery on directives. – Arturo Hernandez Nov 20 '13 at 22:55
-
Link doesn't really apply to this. OP is asking for a specific case. Do you have a solution? – Josh Noe May 25 '14 at 00:14
In my humble opinion ui.bootstrap covers this issue, for instance this basic example http://surecode.me

- 280
- 2
- 4