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
When the polyfill starts to interpolate a value, it will only set the transform property because that was the property it detected was available when it ran detectFeatures(). However, when both properties are present, it appears Chrome (36) will actually take the value of -webkit-transform to transform the element, and not the value of transform. As a result, the animation does not appear in Chrome, because Chrome is reading the un-animated property!
The text was updated successfully, but these errors were encountered:
joeytwiddle
changed the title
Animations just stopped working? Chrome 36 prefers '-webkit-transform' over 'transform' if both are present.
Your animations just stopped working? Chrome 36 prefers '-webkit-transform' over 'transform' if both are present.
Jul 24, 2014
joeytwiddle
changed the title
Your animations just stopped working? Chrome 36 prefers '-webkit-transform' over 'transform' if both are present.
Chrome 36 prefers '-webkit-transform' over 'transform' if both are present.
Jul 25, 2014
joeytwiddle
changed the title
Chrome 36 prefers '-webkit-transform' over 'transform' if both are present.
Chrome prefers '-webkit-transform' over 'transform' if both are present.
Jul 25, 2014
joeytwiddle
changed the title
Chrome prefers '-webkit-transform' over 'transform' if both are present.
On Mac, Chrome will use '-webkit-transform' over 'transform' if both are present.
Jul 30, 2014
I just wanted to share this, in case others meet the same issue.
Our elements have values set for various prefixed and non-prefixed CSS properties (set on the
element.style
.) For example:When the polyfill starts to interpolate a value, it will only set the
transform
property because that was the property it detected was available when it randetectFeatures()
. However, when both properties are present, it appears Chrome (36) will actually take the value of-webkit-transform
to transform the element, and not the value oftransform
. As a result, the animation does not appear in Chrome, because Chrome is reading the un-animated property!The text was updated successfully, but these errors were encountered: