Newer
Older
escapegame-2022 / S1teamkadai / door3-red.html
@Yuto Togashi Yuto Togashi on 26 Jul 2022 922 bytes add cursor movement
<!DOCTYPE html>
<html lang="ja">
<head>
    <title>行き止まり|鮮やかな扉の部屋からの脱出</title>
    <link rel="stylesheet" type="text/css" href="door.css">
    <script type="text/javascript">
        document.addEventListener('keydown', function (e) {
            if (e.code == 'KeyS' || e.code == 'ArrowDown') {
                window.location.href = "door2-yellow.html";
            }
        })
    </script>
</head>
 
<body>
<h1>鮮やかな扉の部屋からの脱出</h1>

<div class="question">
    <h2>行き止まり</h2>
    <img src="5.jpg" alt="none" width="480" height="360">
    <p class="center">何もない部屋だ。どうやら間違った扉を選んでしまったらしい。</p>
    <p class="center"><a href="door2-yellow.html">前の部屋に戻る</a></p>
</div>

<p class="center">&copy; 2022 東北公益文科大学 情報システムa/b ゲーム班</p>

</body>
</html>