开发者

HTML5 canvas game not working in IE

开发者 https://www.devze.com 2023-03-19 12:26 出处:网络
I\'m working on a HTML5 canvas game using a JavaScript library called Propulsionjs.com. The preview can be seen here: http://druls.com/balloon/. To enable the canvas element in IE I have included a fe

I'm working on a HTML5 canvas game using a JavaScript library called Propulsionjs.com. The preview can be seen here: http://druls.com/balloon/. To enable the canvas element in IE I have included a few of libraries like extcanvas, still some part of the game is not working properly.

<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->

<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->

<script type="text/javascript" src="excanvas.js"></script>

Can anyone help me out? As I found out sprite elements are not working. Can anyone help me solving this issue? The source code here: h开发者_JAVA百科ttp://druls.com/balloon/balloons.zip.


Because on line 1567: value.call(value,value);

value is undefined and IE9 is stopping execution.

0

精彩评论

暂无评论...
验证码 换一张
取 消