我正在尝试在页面中心的画布(用于游戏)上放置一个 div 元素。这是关于我想在开始游戏之前在画布上显示的开始屏幕(这个开始屏幕有“玩游戏”、“设置”等选项)。问题是我无法完成这项工作,我在谷歌上搜索了很多,我看过很多例子,但似乎没有一个对我有用。这是我的代码:
<div id="gamecontainer">
<canvas id="myCanvas" width="800" height="600">
Sorry, <strong>CANVAS</strong> is not supported by your browser. Get a more recent one to play my game!
</canvas>
<div id="gamestartscreen" class="gamelayer">
<img src="images/icons/play.png" alt="Play Game" onclick="alert('ceve');"><br>
<img src="images/icons/settings.png" alt="Settings">
</div>
</div>
这是CSS:
#gamecontainer {
width: 800px;
height: 600px;
background-color: beige;
border: 1px solid black;
position: relative;
margin: 0 auto;
}
.gamelayer {
width: 800px;
height: 600px;
position: absolute;
display: none;
z-index: 0;
}
/* Screen for the main menu (Like Play, Settings, etc.) */
#gamestartscreen {
position: relative;
margin: 0 auto;
}
#gamestartscreen img {
margin: 10px;
cursor: pointer;
}
有人可以告诉我我在哪里做错了吗?