我有一些基本开始屏幕的代码,但我想将按钮更改为图像,我该怎么做?
<div id="SplashScreen">
<h1>Game Title</h1>
<input id="StartButton" type="button" value="Start"/>
</div>
<canvas id="GameCanvas" style="display: none;">Game Stuff</canvas>
<script>
$("#StartButton").click(function () {
$("#SplashScreen").hide();
$("#GameCanvas").show();
});
</script>
所以我想用图像替换播放按钮?有没有办法做到这一点?