我只是对 Javascript 和 HTML5 画布进行了一些实验,当我在浏览器(chrome)中看到它时,我意识到它的渲染效果不是很好。在那之后,我在 Internet Explorer 中看到了它,它看起来更加难看。我做了一个小例子: http: //ios.xomz.de/ 我只是在html代码中声明了canvas对象
<canvas id="mycanvas" width="1000px" height="600px"/>
并用
var canvas = document.getElementById("mycanvas");
var context = canvas.getContext("2d");
context.beginPath();
context.rect(200, 200, 600, 200);
context.lineWidth = 5;
context.strokeStyle = 'black';
context.stroke();
context.font = "40pt arial";
context.fillStyle = "black";
context.fillText("Hello World!", 220, 380);
例如。
你能解释为什么渲染不好?