-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (70 loc) · 3.35 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Chinese New Year 2023 - Year of the Rabbit</title>
<meta name="description" content="Chinese New Year greeting card and mini video game for the Year of the Rabbit. Gong Xi Fa Cai, everyone!">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#c06060">
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:300" rel="stylesheet">
<link href="./app/main.css" rel="stylesheet">
<script src="./app/main.js"></script>
<meta property="og:title" content="Chinese New Year 2023 - Year of the Rabbit">
<meta property="og:description" content="Chinese New Year greeting card and mini video game for the Year of the Rabbit. Gong Xi Fa Cai, everyone!">
<meta property="og:type" content="website">
<meta property="og:url" content="https://shaunanoordin.github.io/cny2023/">
<meta property="og:image" content="https://shaunanoordin.github.io/cny2023/assets/cny2023.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="1280">
<meta property="og:image:height" content="640">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@darke_shard">
<meta name="twitter:creator" content="@darke_shard">
<meta name="twitter:title" content="Chinese New Year 2023 - Year of the Rabbit">
<meta name="twitter:description" content="Chinese New Year greeting card and mini video game for the Year of the Rabbit. Gong Xi Fa Cai, everyone!">
<meta name="twitter:image" content="https://shaunanoordin.github.io/cny2023/assets/cny2023.png">
</head>
<body>
<div id="app">
<header>
<h1>Chinese New Year 2023 - Year of the Rabbit</h1>
</header>
<main id="main" tabindex="0">
<canvas id="canvas"></canvas>
<div id="interaction-menu"></div>
<div id="home-menu">
<div>
<img id="cny2023-card" src="assets/cny2023.png" />
<div class="row">
<div class="col">
<button id="button-play" class="ui-button">Play Game!</button>
<span class="highscore" id="highscore-0"></span>
</div>
<div class="col">
<h2>Chinese New Year 2023 - Year of the Rabbit</h2>
<p>
<i>Help astro-bunny reach the moon!</i>
</p>
<p>
Created by <a href="https://shaunanoordin.com" target="_blank">Shaun A. Noordin</a> with support and love from Tay Ni-Choon.
</p>
</div>
</div>
</div>
</div>
<button id="button-home" class="ui-button"><img src="./assets/icon-menu-white.svg" alt="Home Menu"></button>
<button id="button-fullscreen" class="ui-button"><img src="./assets/icon-fullscreen-white.svg" alt="Fullscreen"></button>
<button id="button-reload" class="ui-button"><img src="./assets/icon-refresh-white.svg" alt="Reload"></button>
<button id="button-arrow-left" class="ui-button"><img src="./assets/icon-arrow-left-white.svg" alt="Move Left"></button>
<button id="button-arrow-right" class="ui-button"><img src="./assets/icon-arrow-right-white.svg" alt="Move Right"></button>
<div id="rotate-prompt">
<p>Please rotate your device, this game is best played in a landscape view.</p>
<button id="button-dismiss-rotate-prompt">OK!</button>
</div>
</main>
<footer>
<div><a href="https://shaunanoordin.com" target="_blank">shaunanoordin.com</a> / 2023</div>
</footer>
</div><!--/#app-->
</body>
</html>