Я пытаюсь заставить Internet Explorer Mobile 7 отображать Canvas.
Я использовал ExplorerCanvas, и страница работает в IE7 (насколько я понимаю, IE Mobile 7 основан на IE7).
Вот код:
<html>
<head>
<title>Canvas Test</title>
<script type="text/javascript" src="excanvas.js"></script>
<script type="text/javascript">
window.onload = function() {
var canvasElement = document.getElementById("canvas");
var context = canvasElement.getContext("2d");
context.fillStyle = "blue";
context.fillRect(20,20,20,20);
}
</script>
</head>
<body>
<canvas id="canvas" width="100" height="100"/>
</body>
</html>
Возможно ли заставить это работать на WP7?