-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (44 loc) · 1.97 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
<!doctype html>
<html lang="ja">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width" , initial-scale=1>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<meta name="mario" content="processingで作ったマリオ">
<title>mario made by processing</title>
<meta property="og:title" content="Mario by Processing" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://web-mario-shunkicreate.vercel.app/" />
<meta property="og:image" content="https://web-mario-shunkicreate.vercel.app/ogp.jpg" />
<meta property="og:description" content="Processingで作成されたマリオのパロディゲームです." />
<script src="processing.min.js"></script>
</head>
<body style="font-family: Avenir, Helvetica, Arial, sans-serif;">
<br>
<div class="container">
<div class="row text-center">
<div class="col-6">
<h3>操作方法</h3>
</div>
<h6 class="col-6">
左右の方向キーで移動.マウスをクリックでジャンプ.土管に入るとリセット.
</h6>
<div class="col-6">
<h3>How to play</h3>
</div>
<h6 class="col-6">
Use the left and right directional keys to move. Click the mouse to jump. Reset when you enter the earthen pipe.
</h6>
</div>
</div>
<div style="text-align:center;">
<canvas data-processing-sources="mario.pde"></canvas>
</div>
<div style="text-align:center;">© 2020-2021 Shunki Tada</div>
</body>
</html>