Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I created animation in flash and converted it into HTML5 using Swiffy.

I think it's using SVG to render all of it; is there some JavaScript or a trick to make IE8 and below support it? My animation is working well with Internet Explorer 9.

Thanks!

share|improve this question
This accepted answer on the question Can't display SVG charts in Internet Explorer 8 may help you. In a nutshell, your best bet is to use the VML capabilities of IE8 and below to render the graphics. – JackieChiles Feb 19 '12 at 23:11

1 Answer

up vote 20 down vote accepted

While no option is perfect, there are a few choices:

1.) Adobe has a SVG plugin for IE8 http://www.iegallery.com/en/addons/detail.aspx?id=444

2.) The Raphael JavaScript Framework allows vector graphics cross browser - http://raphaeljs.com/

3.) Then there are the Open Source projects: http://code.google.com/p/svg2vml/ and http://code.google.com/p/svgweb/

4.) There is the option to display flash for IE8 and below.

5.) There is the option to gracefully degrade for IE8 and below and show a static image in place of the animation.

Based on your reason for the animation - I would recomend 4 or 5.

share|improve this answer
2  
i'd go for raphael.js among others. – Joseph the Dreamer Feb 20 '12 at 4:03
Since svgweb displays the SVG in Flash, why wouldn't you recommend that before 4? – robertc Feb 20 '12 at 9:00
because he already has the animation in flash code. – Todd Moses Feb 20 '12 at 13:02
And he wants to continue updating both the Flash animation and the SVG one? – robertc Feb 20 '12 at 14:38
of-course not. Good point. I assumed animation pretty much stayed the same. – Todd Moses Feb 20 '12 at 16:50
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.