-
Notifications
You must be signed in to change notification settings - Fork 27.4k
Animations not working with 1.4.x releases, ok with 1.3 #12267
Comments
ping @matsko |
@xiphiaz could you try exclude angular-material and investigate, is it a problem of ng-animate? |
It looks like there is something going on within Material. I'll be pairing with @ThomasBurleson today to see what the issue is. |
I think I'm suffering from this as well, using (not using material in my case) |
Oh, and yes, reverting to |
@Tathanen - do you have a small-sized demo that we can use to debug and investigate? |
@ThomasBurleson my (very much unfinished) personal site is fairly small with angular material and angular animate. Reverting to 1.3 works for me. |
@ThomasBurleson nothing public unfortunately. If @xiphiaz's site isn't enough I can see if I can get something together, though. |
Please do. The more simple the demo, the faster we can get this fixed. |
Alright, I've thrown together a super-pared-down example based on my codebase: http://www.coryfaller.com/angular_animate/index.html#/admin/users The table/array is supposed to show once it's non-empty, with a little fade-in effect. Which is effectively immediately, once the controller runs. On 1.4.x, the table just appears with no animation. I'm using |
@Narretz can this issue have the milestone switched to 1.4.x as this has been confirmed and reproduced by multiples sources? |
@xiphiaz Thanks for the repros. I still can't switch the milestone, since I have to check out your app and verify that it's working with 1.3.x and not working with 1.4.x. There's also still a lot of stuff in the repo, so getting the bottom of this is more difficult. |
@Narretz I have just tried with latest snapshot of both angular & angular-animate |
I ran through some |
@matsko @ThomasBurleson were you able to see this issue using the example I provided? Is there anything else I can do to help this get diagnosed? |
@Taritsyn, @xiphiaz - The Angular Material fixes [to use $animateCss] are in both the
That branch will be merged into master on Monday or Tuesday... at which time you should be able to validate use of Angular Material with Angular 1.4.x |
@ThomasBurleson The issue as demonstrated in my example makes no use of Angular Material, it's just stock Angular 1.4.x and angular-animate. |
@Tathanen - My apologies. I was tracking issues where Angular material and ngAnimate 1.4.x overlap. Please disregard [my comments] if you are not using Angular Material. |
So, a few things. One, my demo is a bit misleadinig on the "animate enabled" flag. I've discovered that when first running the code in a controller, $animate.enabled() returns false, because the flag only sets to true after the first digest cycle is complete. If I put it in a timeout, it displays true. Two, I've been able to make my animations work if I use ng-if instead of ng-show. The enter/leave classes appear as they should, when I do something like this:
When I use ng-show, though, my problems persist. The transition classes simply never appear. I've tried a wide variety of combinations to get things moving, referencing the doc here: https://code.angularjs.org/1.4.3/docs/api/ng/directive/ngShow The doc is pretty confusing, though, since the "note about animations" section and actual example at the bottom say different things. The note section claiming that you need to add a zero-duration transition at the start to properly apply all styling in 1.3.x, and another section requiring an alternative to display:none for hiding, but none of this is actually present in the example at the bottom, so I'm not really sure what is or isn't actually required. Regardless, this is what I'm trying now, and it still does not produce the transition classes when my element goes from hidden to visible:
I tried a more direct class-based animation but was met with similar issues.
This animates the opacity, but not the background color. Because the "-add" class is never added, it's an immediate transition to the .showme class when I toggle the class on. So in summary, it looks like my issue here is with class-based animations in 1.4.x, and the intermediary add/remove classes never being added. |
I've got a small snippet that might help getting a better insight about this issue. It works with Angular 1.3.17 but doesn't work with 1.4.3. It works if you don't include ngAnimate. It works if you replace ng-show with ng-if. |
@ThomasBurleson really? Wouldn't That would mean that we can't have any angular bindings in the |
It shouldn't matter if it's on |
@xiphiaz - I was recommending a generalized best-practice. |
Is there any reason why putting (I personally think either is equally good a practice - but I might be missing something 😃) |
@gkalpak - IMO |
I usually like being able to |
Yeah, every Angular app I've developed has modified the meta title tag on route change, I'd certainly recommend ng-app as high up in the DOM as possible as the best practice. I'll also define a "site" controller on the HTML tag to contain the logic for those kind of high-level actions. |
@Tathanen - interesting. Thank you for this. |
I am not sure if this is fixed or not ? |
|
Any updates? Currently still experiencing animation issues when using material 0.11, UI router 0.2.15, and angular 1.4 I couldn't tell from the comments, is it fixed if the app is bootstrapped on the body and ui-view placed on a child div? My project bootstraps on html and ui-views directly on body. |
For the record, |
Just tested today with 1.4.6, are you using ui-router, if so where is your top level UI router (mine currently on body tag). Thanks. |
Sorry, meant to say if so where is top-level ui-views. |
In case it helps anyone, my sidebar animations were broken with
Upgrading to |
I also have the same problem with $animate.addClass, animation classes are not being added. I am using: |
Same from me with 1.4.7 in both angular and angular-animate |
Using 1.4.7 I found that the issue seemed to be that my BODY element was an ng-app and and ng-view. As discussed above I altered this like so:
... and my animations started to work. |
Angular 1.4.7 seems to have fixed my original issue - angular animate is now working again. Also, to confirm setup with others, I'm using angular material and ui router, with the
|
ngAnimate works here (1.3.8): https://gist.githubusercontent.com/bennadel/89c1659b1ce489e248a6/raw/0192d1479b95b5007af02d308dc62ffe619412da/pre-bootstrap-screen.htm - http://bennadel.github.io/JavaScript-Demos/demos/pre-bootstrap-loading-screen-angularjs/ But does not work here (1.4.7): http://codepen.io/IDontEatSoap/pen/JYBJwV Ideas? |
I'd like to add that I am also still seeing this issue. I had a hard time finding related google searches based on this issue, so instead I posted this issue on stackoverflow at the time: Just found this case issue today, and wanted to let you know I've tried the steps here, upgrading to 1.4.7 angular/angular-router My current |
I've added a codepen showing this: http://codepen.io/anon/pen/OyoyYX?editors=101 If you are using chrome, look into the debugger browser. You can see the enter/etc classes are not being attached. |
Hi, i am trying to use animation with angular 1.4.7 and angular-strap to animate my modals and alert messages. Someone can help me ? |
I too see issues with ngAnimate, both in Angular 1.4.7 and Angular 1.5.0.b2. I am using ui.router 0.2.15. The weird part is, that animations work as expected when switching states in ui.router, but the animation classes are not added for ng-repeat directives in the views. |
For me the cause for css classes not being applied seemed to have been an old version of angular-bootstrap (ui-bootstrap-tpls.js) which I updated from ~0.13.4 to ~0.14.3. (Angular 1.4.x) |
same problem here, |
@jherman Your ng-show / hide elements have no animation CSS associated with them, that's why the classes are never added. |
Hi, |
I'm building a single page application with angular material and for some reason the animations are not functioning.
It looks like it is not just angular material as I can't get the basic example on the https://docs.angularjs.org/guide/animations page to work.
It appears that the classes that angular material relies on to be added for the css animations to hook on to are not being applied. Inspecting the elements in chrome I just see the hide and show classes but none of the transition classes.
Relevant parts of my bower file:
My site (in development) is at http://www.zakhenry.com and the animation test page is at http://www.zakhenry.com/#/blog
When the viewport is small (ie mobile width) I should be able to see the sidepane animate out like on the https://material.angularjs.org/latest/ site; instead it just appears and disappears.
Source code is at https://github.com/xiphiaz/zakhenry.com
update
I can actually access the nganimate api eg if I run
$animate.leave();
in a controller I get an error thrown from angular-animate, indicating the module is loaded successfully. Also adding breakpoints in the ng animate vendor works.If I call
console.log($animate.enabled())
in therun()
phase I getfalse
in the console. I tried setting it to true with$animate.enabled(true)
, to no effect.The text was updated successfully, but these errors were encountered: