IE9 Support for HTML5 Canvas tag

后端 未结 5 839
Happy的楠姐
Happy的楠姐 2021-01-01 13:24

I am trying to test out the canvas tag, I started with this code:


 
    This text is d         


        
相关标签:
5条回答
  • 2021-01-01 13:57

    Just an add on to this there's a little script I've been using called excanvas that has allowed me to run canvas animations (slowly) on IE8, haven't tried it on 7 and 6 but it's worth a look.

    0 讨论(0)
  • 2021-01-01 14:00

    As far as I'm aware HTML 5 Canvas support is under development for IE9, unless it is already in the RC.. Perhaps not the best website to find out you could browse to html5test with IE9 to see if it supports certain HTML 5 tags or not. As an alternative you can browse to caniuse which should also give you alot of info regarding the HTML5 support of browsers .

    0 讨论(0)
  • 2021-01-01 14:09

    IE9 does support canvas. Here is an exmaple.

    If canvas does not work in your browser, press F12 (open developer tools), and make sure, that IE is not in compatibility mode.

    0 讨论(0)
  • 2021-01-01 14:10

    If you install the Google Chrome Frame Plugin [http://www.google.com/chromeframe][1], it upgrades IE6-9 to run the webkit rendering engine - along with HTML5/CSS3 support.

    0 讨论(0)
  • 2021-01-01 14:19

    Extending the answer from gor, make sure that you have added following metadata.

    <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
    

    This will force IE to use the latest mode as possible and users don't need to change the compatibility mode from developer tools.

    0 讨论(0)
提交回复
热议问题