-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (90 loc) · 4.74 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Japari Bun Catch! / じゃぱりまんきゃっち!</title>
<meta name="description" content="A simple Kemono Friends fan game about catching falling Japari Buns and delivering them to a waiting Friend.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#ee9944">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=DotGothic16&family=Noto+Sans+JP&family=Otomanopee+One&display=swap" rel="stylesheet">
<link href="./app/main.css" rel="stylesheet">
<script src="./app/main.js"></script>
<meta property="og:title" content="Japari Bun Catch! / じゃぱりまんきゃっち!">
<meta property="og:description" content="A simple Kemono Friends fan game about catching falling Japari Buns and delivering them to a waiting Friend.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://shaunanoordin.github.io/japari-bun-catch/">
<meta property="og:image" content="https://shaunanoordin.github.io/japari-bun-catch/japari-bun-catch.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="800">
<meta property="og:image:height" content="500">
<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="Japari Bun Catch! / じゃぱりまんきゃっち!">
<meta name="twitter:description" content="A simple Kemono Friends fan game about catching falling Japari Buns and delivering them to a waiting Friend.">
<meta name="twitter:image" content="https://shaunanoordin.github.io/japari-bun-catch/japari-bun-catch.png">
</head>
<body>
<div id="app">
<header>
<h1>Japari Bun Catch! / じゃぱりまんきゃっち!</h1>
</header>
<main id="main" tabindex="0">
<canvas id="canvas"></canvas>
<div id="menu">
<div>
<h2>Japari Bun Catch!</h2>
<p>A simple Kemono Friends fan game about catching falling Japari Buns and delivering them to a waiting Friend.</p>
<ul>
<li>Move Lucky Beast left and right to catch buns.</li>
<li>Don't let buns fall to the floor!</li>
<li>Get 3 buns and a Friend will appear. Move towards her to deliver and score points.</li>
<li>Lucky Beast can carry up to 6 buns.</li>
</ul>
<p>
Created by <a href="https://shaunanoordin.com" target="_blank">Shaun A. Noordin</a>,
based on an idea by <a href="https://twitter.com/kuro96siro46/" target="_blank">くろしろ-san's</a> <a href="https://twitter.com/kuro96siro46/status/1421139739126558722?s=19" target="_blank">tweet</a>.
</p>
<hr />
<h2>じゃぱりまんきゃっち!</h2>
<p>「けものフレンズ」のファンゲームです、落ちてくるじゃぱりまんを捕まえて待っているフレンズに届ける。</p>
<p>
<a href="https://shaunanoordin.com" target="_blank">Shaun A. Noordin</a> によって作られました。
<a href="https://twitter.com/kuro96siro46" target="_blank">くろしろさん</a>に<a href="https://twitter.com/kuro96siro46/status/1421139739126558722" target="_blank">よるアイデア。</a>
</p>
<hr />
<p>
Special thanks to <a href="https://twitter.com/JimForonda" target="_blank">Jim Foronda</a>,
<a href="https://twitter.com/EaterofPi" target="_blank">Eater of Pi</a>,
and the <a href="https://twitter.com/JapariLibrary" target="_blank">Japari Library</a>!
</p>
</div>
</div>
<button id="button-home" class="ui-button">
<img src="./assets/icon-menu-white.svg" alt="Home Menu">
<span>(Esc)</span>
</button>
<button id="button-reload" class="ui-button">
<img src="./assets/icon-refresh-white.svg" alt="Reload">
<span>(R)</span>
</button>
<button id="button-left" class="ui-button"><img src="./assets/icon-controls-left.svg" alt="Arrow Left"></button>
<button id="button-right" class="ui-button"><img src="./assets/icon-controls-right.svg" alt="Arrow Right"></button>
</main>
<footer>
<div>
Inspired by <a href="https://twitter.com/kuro96siro46/status/1421139739126558722" target="_blank">くろしろ-san's tweet</a>,
created by <a href="https://shaunanoordin.com" target="_blank">Shaun A. Noordin</a>.
/
Special thanks to <a href="https://twitter.com/JimForonda" target="_blank">Jim Foronda</a>,
<a href="https://twitter.com/EaterofPi" target="_blank">Eater of Pi</a>,
and the <a href="https://twitter.com/JapariLibrary" target="_blank">Japari Library</a>!
/
2021
</div>
</footer>
</div><!--/#app-->
</body>
</html>