jquery - SVG animation and firefox -


i'm struggle svg animation drawing, work on browsers (even ie has no problems that), firefox not drawing correctly

script self work on modern browsers script took - http://tympanus.net/development/svgdrawinganimation/

but when generate svg code vector image not work on firefox example - codepen

it 100% svg path issue, code. what?

if @ <path> styles in firefox dom inspector, you'll see refusing parse of stroke-dasharray values. without dash pattern, won't see animation on paths.

in particular, paths firefox having problem reporting total lengths in billions of units. now, there's nothing in specs says path lengths , dash patterns can't billions of units long, not unreasonable firefox implementation works maximum.

what unreasonable firefox calculating such extreme path lengths in first place. example, first path in drawing ff28 reports path length 308225966080, while chrome calculates around 920.6.

turns out the problem gettotallength known bug in firefox 28. fixed soon!


Comments

Popular posts from this blog

PHPMotion implementation - URL based videos (Hosted on separate location) -

javascript - Using Windows Media Player as video fallback for video tag -

c# - Unity IoC Lifetime per HttpRequest for UserStore -