summaryrefslogtreecommitdiff
path: root/gb/index.html
blob: c0f3f678238a177079f0aadbda444ea24cae4f55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <link rel="icon" href="https://static.luevano.xyz/images/gb/gb_icon.svg" />
  <title>Gameboy</title>

  <script src="https://static.luevano.xyz/scripts/jquery-3.5.1.min.js"></script>
  <script src="https://static.luevano.xyz/scripts/gb.js"></script>

  <link rel="stylesheet" href="https://static.luevano.xyz/css/gb.css">
</head>
<body>

  <header>
    <a href="https://luevano.xyz/">[HOME]</a>
  </header>

  <div class="gameboy">
  <img class="screen" src="https://gb.ezclap.xyz/image" id="game_img"><br><br>


  <table class="controls">
    <tbody>
      <tr>
        <td/>
        <td>
          <input type="image" src="https://static.luevano.xyz/images/gb/up.png" alt="Up" id="btn_up">
        </td>
        <td/>
        <td/>
        <td/>
        <td/>
        <td>
          <a href="https://gb.luevano.xyz"><img src="https://static.luevano.xyz/images/gb/refresh.png"></a>
        </td>
      </tr>
      <tr>
        <td>
          <input type="image" src="https://static.luevano.xyz/images/gb/left.png" alt="Left" id="btn_left">
        </td>
        <td/>
        <td>
          <input type="image" src="https://static.luevano.xyz/images/gb/right.png" alt="Right" id="btn_right">
        </td>
        <td/>
        <td/>
        <td>
          <input type="image" src="https://static.luevano.xyz/images/gb/B.png" alt="B" id="btn_b">
        </td>
        <td>
          <input type="image" src="https://static.luevano.xyz/images/gb/A.png" alt="A" id="btn_a">
        </td>
      </tr>
      <tr>
        <td/>
        <td>
          <input type="image" src="https://static.luevano.xyz/images/gb/down.png" alt="Down" id="btn_down">
        </td>
        <td/>
        <td/>
        <td/>
        <td/>
        <td/>
      </tr>
      <tr>
        <td/>
        <td/>
        <td/>
        <td>
          <input type="image" src="https://static.luevano.xyz/images/gb/select.png" alt="Select" id="btn_select">
        </td>
        <td>
          <input type="image" src="https://static.luevano.xyz/images/gb/start.png" alt="Start" id="btn_start">
        </td>
        <td/>
        <td/>
      </tr>
    </tbody>
  </table>
  </div>

  <footer>
    <a href="https://github.com/HFO4/gameboy.live">Gameboy emulator written in Go</a> by <a href="https://github.com/HFO4">Aaron Liu AKA HFO4 on GitHub</a>.<br>
    Input button images also taken from him.
  </footer>

</body>
</html>