-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
45 lines (43 loc) · 1.68 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TAP10</title>
<link rel="stylesheet" type="text/css" href="app.css">
<!-- アドレスバー等のブラウザのUIを非表示 -->
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- default(Safariと同じ) / black(黒) / black-translucent(ステータスバーをコンテンツに含める) -->
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- ホーム画面に表示されるアプリ名 -->
<meta name="apple-mobile-web-app-title" content="TAP10">
<!-- ホーム画面に表示されるアプリアイコン -->
<link rel="apple-touch-icon" href="icons/icon-152x152.png">
<!-- アドレスバーの色を設定 -->
<meta name="theme-color" content="#a0ce00"/>
<!-- ウェブアプリマニフェストの読み込み -->
<link rel="manifest" href="manifest.json">
<!-- ServiceWorkerの登録 -->
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('sw.js')
.then((reg) => {
console.log('Service worker registered.', reg);
});
}
</script>
</head>
<body>
<section class="container">
<h1 class="title">10秒で何回タップできるか</h1>
<button id="js-tapBtn" class="btn-tap" disabled>
<span id="js-count"></span><br>タップ!!
</button>
<div class="time">残り時間 <span id="js-time"></span> 秒</div>
<button id="js-startBtn" class="btn">START</button>
<button id="js-tweetBtn" class="btn btn-tw" >記録をつぶやく</button>
</section>
<script src="app.js"></script>
</body>
</html>