私はキャンバスで遊んでいます。 3つのキャンバス要素を作成し、最初の2つを上に配置できますが、3番目のキャンバス要素はstyle.topとstyle.leftの値を受け入れません。HTML5 Canvasのキャンバス位置の値が解析されない
ご迷惑をおかけして申し訳ございません。
JSファイルにある関連するコード、:
var setPlayerBoardSize = function() {
"use strict";
playerBoard.width = window.innerWidth;
playerBoard.height = window.innerHeight/6;
}
var setPlayerBoardPosition = function() {
"use strict";
playerBoard.style.top = window.innerHeight/2 + playerBoard.height;
playerBoard.style.left = window.innerWidth/2 - playerBoard.width/2;
playerBoard.style.position = "absolute";
Firefoxのインスペクタのコンソール出力:
Error in parsing value for ‘top’. Declaration dropped.
Error in parsing value for ‘left’. Declaration dropped.
次のように他のキャンバス要素が配置されている:
var setCanvasSize = function() {
"use strict";
pageCanvas.width = window.innerWidth;
pageCanvas.height = window.innerHeight;
};
var setCanvasPosition = function() {
"use strict";
pageCanvas.style.top = window.innerHeight/2 - pageCanvas.height/2;
pageCanvas.style.left = window.innerWidth/2 - pageCanvas.width/2;
pageCanvas.style.position = "absolute";
};
var setScoreBoardPosition = function() {
"use strict";
scoreBoard.style.top = window.innerHeight/2 - pageCanvas.height/2;
scoreBoard.style.left = window.innerWidth/2 + pageCanvas.width/4;
scoreBoard.style.position = "absolute";
}
を
これらはすべてページの冒頭で宣言されています。
HTMLファイル内var pageCanvas = document.getElementById("pageCanvas");
var pctx = pageCanvas.getContext('2d');
var scoreBoard = document.getElementById("scoreCanvas");
var bctx = scoreBoard.getContext('2d');
var playerBoard = document.getElementById("playerCanvas");
var sctx = playerBoard.getContext('2d');
キャンバス宣言は次のとおりです。
<canvas id="sparkyCanvas" width="1000" height="600">
</canvas>
<canvas id="scoreCanvas" width="300" height="100">
</canvas>
<canvas id="playerCanvas" width="1000" height="100">
</canvas>
私は困惑します!どんな援助も歓迎されるだろう。
あなたのHTMLコードも共有してください –
私はキャンバス宣言を含めるように質問を編集しました。キャンバスコードはすべて動作し、意図したとおりにページが読み込まれ、指定されたオブジェクトが各キャンバスに描画されますが、playerCanvasはstyle.topとstyle.leftの値を受け入れることができません。 – user7978271