Animation in AngularJS
gsklee.im
Animation in AngularJS
1–10 of 25 posts
Re: Animation in AngularJS
#2Re: Animation in AngularJS
#3Re: Animation in AngularJS
#4WebKit at least will create a composited layer for the duration of a transition/animation all by itself -- if you do choose to use translateZ(0) everywhere, understand that it consumes texture memory the whole time the element is in the DOM (and not display:none) and maybe has a backing store in heap as well. So if you want your page to not crash Mobile Safari on older Apple devices then use it judiciously.
Re: Animation in AngularJS
#5Re: Animation in AngularJS
#6Re: Animation in AngularJS
#7With ng-animate, angular completes the circle of defining HTML DOM behavior in a pure declarative way. I can't wait for this to go to the stable branch.
I'm just wondering how long it will take to get people to convert to this way of thinking.
Re: Animation in AngularJS
#8Re: Animation in AngularJS
#9With ng-animate, angular completes the circle of defining HTML DOM behavior in a pure declarative way. I can't wait for this to go to the stable branch.
This will allow for drop-in animations (like animate.css, mentioned in the deck) in the same sort of way that bootstrap allowed for drop-in styles.