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
In the following example, the scale remains in effect after the 2 seconds have passed.
// We have a polyfill bug here: fill 'none' is not being respected.
element.animate([{transform: 'scale(1)'}, {transform: 'scale(3)'}], {duration: 2000, fill: 'none'});
This observed faulty behavior can be avoided by noting that transform is an SVG attribute; it must be added to svgProperties.
The text was updated successfully, but these errors were encountered:
In the following example, the scale remains in effect after the 2 seconds have passed.
This observed faulty behavior can be avoided by noting that transform is an SVG attribute; it must be added to svgProperties.
The text was updated successfully, but these errors were encountered: