You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that only the properties that have at some point been part of a forwards animation are 'disabled'. And this occurs in chrome 48 but not firefox 44
The text was updated successfully, but these errors were encountered:
urandom
pushed a commit
to urandom/readeef
that referenced
this issue
Feb 9, 2016
Due to web-animations/web-animations-js#59, chrome can't set any
properties that have been previously animated. Currently there are
jitters at the end of the animations in Firefox, but at least its still
usable.
Hi,
Using fill: forwards when starting an animation somehow disables all style changes after the animation ends. This can very easily be tested by doing:
$('body').animate([{opacity: 1}, {opacity: 0.3}], {duration: 400, fill: 'forwards'})
and after than ends, running:
$('body').style.opacity = 1
It seems that only the properties that have at some point been part of a forwards animation are 'disabled'. And this occurs in chrome 48 but not firefox 44
The text was updated successfully, but these errors were encountered: