我使用頂部具有文本的矩形繪製兩個底紋。 正如你所看到的,我使用相同的循環得到了兩個不同的結果。 第一個「按鈕」在文本框後面隱藏文本。 第二個文字寫在上面。 這是爲什麼?排序如何在畫布中工作?在畫布上對對象排序
<body>
<canvas id="canvas" width="320" height="512"
style="position: absolute; left: 500px; top: 50px; z-index: 1;"></canvas>
<script>
var canvas = document.getElementById('canvas');
var context = canvas.getContext("2d");
canvas.style.backgroundColor = 'rgba(0, 0, 0, 0)';
context.clearRect(0, 0, 320, 16);
gameMenu();
function gameMenu(){
var buttons = [ {x: 210, y: 420, w: 80, h: 30, s: "Messages"},
{x: 210, y: 470, w: 80, h: 30, s: "Pause"} ], i = 0, r;
while(r = buttons[i++]) {
context.rect(r.x, r.y, r.w, r.h);
context.fillStyle = "rgb(26,26,26)";
context.fill();
context.fillStyle = 'White';
context.font = "16px Tahoma";
context.fillText(r.s, r.x + 18, r.y + 22);
}
}
</script>
</body>
這裏是一個JS小提琴: https://jsfiddle.net/oa84Lsxn/1/
有沒有排序,你會需要繪製的對象以正確的順序,從下向上。 – Cyclonecode
@Cyclone。好消息,但提問者有一個不同的問題。 ;-) – markE