-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
103 lines (94 loc) · 3.98 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
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<hmtl lang="ja">
<head>
<title>マインスイーパー</title>
<meta charset="utf-8">
<link rel="stylesheet" media="screen" type="text/css" href="css/styles.css" />
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300,600,700' rel='stylesheet' type='text/css'>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript" src="js/mine.js"></script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="京都工学院高校仕様のマインスイーパ">
<link rel="icon" href="https://wsoft.ws/favicon.svg" type="image/svg+xml">
<link rel="icon alternate" href="https://wsoft.ws/favicon.ico">
<meta property="og:site_name" content="WSOFT" />
<meta property="og:url" content="https://wsoft.ws" />
<meta property="og:type" content="website" />
<meta property="og:title" content="マインスイーパ" />
<meta property="og:description" content="京都工学院高校仕様のマインスイーパ" />
<meta property="og:image" content="favicon.svg" />
<meta property="og:locale" content="ja_JP" />
<!-- <meta property="fb:app_id" content="AppID"> -->
<meta name="twitter:card" content="favicon.svg" />
<meta name="twitter:site" content="@taiseiue" />
<meta name="twitter:description" content="京都工学院高校仕様のマインスイーパ" />
<meta name="twitter:image:src" content="favicon.svg" />
</head>
<body>
<div class="container">
<header class="row">
<div class="sixcol">
<h1>マインスイーパーのような何か</h1>
</div>
</header>
<section class="row">
<div class="eightcol">
<canvas id="board" width="600" height="400" oncontextmenu="return false;">
<p>お使いのブラウザはCanvas要素をサポートしていないようです</p>
</canvas>
<noscript>
<p>JavaScriptがオフになっているか、使用できません</p>
</noscript>
</div>
<div class="fourcol last">
<div class="startscreen">
<h1>はじめる</h1>
<p>むずかしさを、えらんでね!(小並)</p>
<button id="ueasybtn">すごくかんたん</button>
<button id="easybtn">かんたん</button>
<button id="mediumbtn">ふつう</button>
<button id="insanebtn">むずかしい</button>
<button id="ultrabtn">オニ</button>
<h1>スコアボード</h1>
<table id="scoreboard">
<tr>
<th>名前</th>
<th>除去した個数</th>
<th>時間</th>
</tr>
</table>
</div>
<div class="gamescreen">
<h1 id="status">開始!</h1>
<p id="msg">四角をクリックしてつぶしてください</p>
<button id="reset">リセット</button>
<button id="switchscreens">難易度を変更する</button>
<br>
<p><input type="checkbox" id="flagchk" value="1">フラグ設置モード</p>
<br>
<p><span id="time">0</span> 秒経過</p>
<span id="mines"></span><br/>
<span id="flags"></span><br/>
<span id="detail"></span>
</div>
</div>
</section>
<footer class="row">
<div class="threecol">
<a href="http://www.w3.org/html/logo/">
<img src="http://www.w3.org/html/logo/badge/html5-badge-h-css3-graphics-semantics-storage.png" width="229" height="64" alt="HTML5 Powered with CSS3 / Styling, Graphics, 3D & Effects, Semantics, and Offline & Storage" title="HTML5 Powered with CSS3 / Styling, Graphics, 3D & Effects, Semantics, and Offline & Storage">
</a>
</div>
<div class="fourcol">
<p>このページはHTML5の技術を用いて制作されています。HTML5?って人はggrks</p>
</div>
<div class="fivecol last">
<p class="desc">
時は現代...京都工学院高校にばれないように画像を見ようとする一人の青年が...ってこの設定いります?
</p>
</div>
</footer>
</div>
</body>
</html>