AngularJS: How to animate ng-repeat on load using ng-animate

匿名 (未验证) 提交于 2019-12-03 02:51:02

问题:

Folks!

How can I get the divs created using ng-repeat to slide down..I mean grow in size ON LOAD.

I want to achieve this using ng-animate and the animation should trigger when the page loads.

I am looking at this example given in the docs wherein the animation beautifully runs when you filter the items but not when the page loads.

I am using version 1.2.0

A working fiddle or plunk would be appreciated. Thanks in advance.

回答1:

In order to show ng-repeat animation on page load, the target array has to be initially empty. Then assigned with values.

Try this http://plnkr.co/edit/mRZFFX?p=preview

This demo used $timeout to set friends value in a later time so the enter animation can be triggered.



回答2:

Can you look below url example of nganimate in ng-repeat:

http://www.nganimate.org/angularjs/ng-repeat/move

If you are using latest version of Angularjs you need to inject 'ngAnimate' in your app and also need to added dependent js file that is "angular-animate.min.js"



回答3:

I am also trying to achieve this. AFAIK the only way is to add the items to the list after page digest.

Here is another example courtesy of Steve Guilford if it helps.



易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!