0
votes
1answer
16 views

Nested ng-repeat animation

I have been trying to animate a list of elements divided by rows(the parent ng-repeat) and the columns(the child ng-repeat). I have achieved the animation that I wanted with singly ng-repeats. The ...
0
votes
0answers
40 views

Angular JS $scope out of sync when calling a controller

I have trying to get my head around this problem for days, I have a Game with a question and 3 possible answers. When a user clicks the correct/incorrect answer the answer animate and then on end of ...
0
votes
0answers
24 views

Custome AngularJS route change page with end of animation callback

I created animation whitch is run during route change page. Such like Scotch described here http://scotch.io/tutorials/javascript/animating-angularjs-apps-ngview It's very good tut but i need to ...
0
votes
0answers
51 views

Angular JS Animation not calling beforeAddClass

I am trying to create an animation using AngJS 1.2.15 I have defined a directive who's purpose is to create a post element and pass showAnswer boolean to the element. And created a animation module ...
2
votes
2answers
86 views

AngularJS .ng-enter animation doesn't work on first run

I'm have a strange problem in my AngularJS app; Animation in my tab-slides switching with ng-include, doesn't work for first time, but works good in second or third time. Here is my test code on ...
0
votes
0answers
41 views

Css Transition displays out of place and then slides

So, I am using angularjs and angular animate to transition views. This works pretty much everywhere I test except for on a Nexus 4. At the beginning of the transition, instead of the new view ...
0
votes
0answers
35 views

Angular 1.2 Animation Classes never applied to view

I'm having difficulty with applying animations to my ng-view. The ng-enter and ng-leave classes don't ever seem to be applied to the view. The behavior seems to be the same as not having animations. ...
3
votes
1answer
165 views

AngularJS animate on children element works 1st time, 2nd fails

I'm having a weird issue here with angular animation. I'm doing an animation that transitions between screens and changes the direction depending on the "depth" of the screen. There tricky part is ...
0
votes
0answers
40 views

Simple angualrjs animate of heights

I've searched for weeks on how to do this and I get how you can animate elements as they "enter" and "leave" the DOM using angular animate and generated css classes (ie. in ngRepeat). What I'm ...
0
votes
2answers
210 views

How to initialize an Angularjs css3 animation using Javascript

I am currently trying to do a CSS3 animation in Angular.js. Before animating I try to set the initial css properties using Javascript. So, is there a way to initialize an animation using Javascript ...
1
vote
3answers
1k views

ngAnimate with ui-view

I am having major problems with getting ngAnimate to work with ui-view. The classes never get applied. Please help: bower.json "angular": "1.2.0-rc.2", "angular-resource": "1.2.0-rc.2", ...
2
votes
1answer
299 views

Using AngularJS' ngAnimate when removing an item from scope

Very simple question: In AngularJS 1.2.x, is it possible (and how) to get ngAnimate to fire when removing an item from scope? Here's an example Plunker: ...
0
votes
1answer
116 views

angular ng-animate causing weird animation on model changed

i am currently using angular 1.2 rc3, i used transition for my ng-repeat items. however, i found that whenever i change my model for the ng-repeat, the transition goes haywired. You'll see the whole ...
1
vote
1answer
110 views

ng-click inside ng-repaat with animations,but event do not fire,why?

Here is the code in jsFiddler As you can see the code,when you click the add button ,I push a new item to the $scope.p,and every item in the ng-repeat has a event-binding,all the things works ...
2
votes
1answer
1k views

Prevent angularjs animation from running on element that is initially hidden when loaded

http://codepen.io/cflynn07/pen/hbgxf ^ Example I have an angularjs animation, and I don't want it to run on page load for an element that is supposed to be hidden. Right now, the element is shown, ...