vote up 5 vote down star
1

I am trying to use the HTML5 canvas element to draw some arcs and circles - this works perfectly in FF but IE8 does not seem to support it.

Now, there exist Javascript libraries which seem to make IE8 work well with Canvas. An example can be found here:

http://thejit.org/Jit/Examples/Hypertree/example1.html

I have read their entire source but I cannot understand how they are making Canvas work with IE8. Can somebody please throw some light on the method used?

flag

Why would you expect Canvas to work with anything? HTML5 is not an approved standard of any type. Until such time as CSS3, HTML5, etc are final standards, brossers can implement anything or not and they're not violating any standards. – Mystere Man Aug 26 at 5:30
@Mystere Man: seeing is believing... – Shog9 Aug 26 at 5:31
@Mystere Man: CSS2.1 was only finalized a couple years ago. Would you have avoided it until then? Standards are based on current implementations and not created by standards committees. Modern browsers have already implemented canvas. You should not let IE hold you back from using it like IE does with most everything. – Rob Oct 15 at 12:59

4 Answers

vote up 6 vote down check

The page is using excanvas - a JS library that simulates the canvas element using IE's VML renderer.

link|flag
Ok got it, thanks :) – Crimson Aug 26 at 5:31
2  
+1 for Google's implementation of canvas for IE. Sad to see 3rd parties fixing limitations in your browser :) – Anderson Imes Aug 26 at 5:36
vote up 2 vote down

I do recommend programming to a higher level of abstraction than "whatever JS and DOM feature happens to be natively supported on this random browser"!-) My favorite framework for this "browser independence" task in general is dojo -- so, for graphics in particular, I'd recommend dojo.gfx -- if you're rather a fan of jQuery or whatever, I imagine those other frameworks offer similarly powerful and smooth facilities (or else, why hasn't everybody else switched to Dojo already?-).

link|flag
vote up 1 vote down

You could use the newly released Chrome Frame plugin for IE, but it requires that the HTML 5 website includes the special meta tag that enables the plugin.

http://code.google.com/chrome/chromeframe/

link|flag
vote up 1 vote down

Just for info.:

I've tried excanvas on IE8, but IE8's performance through excanvas is miserable. + lot's of anomalies with drawing.

My .js with canvas-drawing-routines works perfectly on every other browser (Opera, Safari, Firefox, Chrome).

link|flag
I have also experienced slow render rates in IE8 with excanvas while attempting animations (redrawing the entire canvas - I know this was not supposed to be optimal in the first place) However, in FF this works very well. – Crimson Oct 20 at 8:48

Your Answer

Get an OpenID
or

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