Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

fix($animate): only block keyframes if a stagger is set to occur #6459

Closed
wants to merge 1 commit into from

Conversation

matsko
Copy link
Contributor

@matsko matsko commented Feb 26, 2014

Transitions must be blocked so that the initial CSS class can be applied
without triggering an animation. Keyframes do not need to be blocked since
animations are always triggered on the starting CSS class, however, if a
stagger animation is set to occur then all elements for index > 0 should
be blocked. This is to prevent the animation from occuring early on before
the stagger delay for the given element has passed.

With ngAnimate and keyframe animations, IE10 and Safari will render a slight
flicker effect caused by the blocking. This fix resolves this issue.

Closes #4225

View broken effect (Safari || IE10):
http://bit.ly/keyframe-fail

View fixed effect (Safari || IE10):
http://bit.ly/keyframe-success


$rootScope.$digest();

expect(elements[0].attr('style')).toBeFalsy();
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

don't use toBeFalsy/toBeTruthy, use toBeUndefined instead if possible

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixed.

Transitions must be blocked so that the initial CSS class can be applied
without triggering an animation. Keyframes do not need to be blocked since
animations are always triggered on the starting CSS class, however, if a
stagger animation is set to occur then all elements for index > 0 should
be blocked. This is to prevent the animation from occuring early on before
the stagger delay for the given element has passed.

With ngAnimate and keyframe animations, IE10 and Safari will render a slight
flicker effect caused by the blocking. This fix resolves this issue.

Closes angular#4225
@matsko
Copy link
Contributor Author

matsko commented Feb 26, 2014

MERGED

@matsko
Copy link
Contributor Author

matsko commented Feb 26, 2014

Landed as e71e7b6

@matsko matsko closed this Feb 26, 2014
@matsko matsko deleted the only_stagger branch February 26, 2014 22:09
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

ngAnimate causes reset (flicker) with ng-view and animate.css in Firefox
2 participants