【发布时间】:2016-04-14 18:01:22
【问题描述】:
我使用顶部带有文本的矩形绘制了两个按钮。 如您所见,我使用相同的循环得到了两个不同的结果。 第一个“按钮”将文本隐藏在框后面。 第二个有文字写在上面。 为什么是这样?在画布中排序是如何工作的?
<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 Fiddle: https://jsfiddle.net/oa84Lsxn/1/
【问题讨论】:
-
没有排序,您需要以正确的顺序从下到上绘制对象。
-
@Cyclone。很好的信息,但提问者有不同的问题。 ;-)
标签: javascript sorting canvas layer