1
我有這個設置矩形的簡單代碼。將真實顏色設置爲畫布邊框筆劃?
我正在用黑色撫摸它的邊框。
但是,我沒有在這裏看到任何黑色,但灰色。
<!doctype html>
<html lang="en">
<canvas id="canvas" width=300 height=300></canvas>
<script>
function draw()
{
ctx.beginPath();
ctx.strokeStyle = "#000000";
ctx.strokeRect(rect.x, rect.y, rect.w, rect.h);
}
var canvas = document.getElementById("canvas");
var ctx = canvas.getContext("2d");
ctx.clearRect(0, 0, canvas.width, canvas.height);
var rect = {
x: 10,
y: 10,
w: 40,
h: 100
};
draw();
</script>
</html>
問:
什麼我做錯了,我怎麼可以設置顏色要爲我定義?
可能重複[在html5畫布中繪製單個像素行](http://stackoverflow.com/questions/9311428/draw-single-pixel-line-in-html5- canvas) – 2014-09-22 12:35:05
重複 - http://stackoverflow.com/questions/9311428/draw-single-pixel-line-in-html5-canvas – 2014-09-22 12:35:14