明らかにこれは機能しません。なぜなら、私はHTML5を初めて使用しているから、理由はわかりません。私はキャンバス上にいくつかの垂直線を取得する必要があります。アイデアはキャンバス画面上にグリッドを作成することですが、これは何らかの理由でラインを作成しているようには見えません。HTML5とJSを使用してグリッドを構築し始めましたが、これは機能しません。
<!DOCTYPE html>
<html>
<head>
<title>Test App</title>
<style>
body {
padding:0px;
margin:0px;
}
canvas {
border:1px solid #000000;
}
</style>
</head>
<body>
<canvas id="gc" width="800" height="600"></canvas>
<script>
function buildGrid() {
alert("Start!");
var gameCanvas = document.getElementById("gc");
var ctx = gameCanvas.getContext("2d");
for (x=5; x<gameCanvas.width; x+=5) {
console.log(x);
ctx.moveTo(x, 10);
ctx.lineTo(x, gameCanvas.length);
}
ctx.strokeStyle = "black";
ctx.stroke();
}
window.onload = buildGrid();
</script>
</body>
</html>
これは単なる誤植です。投票を終了する。あなたの投稿を削除してください。 – GameAlchemist