-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
51 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
48
49
50
51
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<title>js課題</title>
</head>
<body>
<div class="container">
<div class="row mt-2">
<div class="bd title col-12">
キューブタイマー
</div>
<div class="container">
<div id="randomize" class="bd random col-12">
ここにランダムで表示されます。
</div>
<button type="button" class="btn btn-primary col-8 mt-1 offset-2">スクランブル</button>
</div>
</div>
<div class="container">
<div class="row">
<div id="time" class="bd time col-8">00:00.000</div>
<div id="record" class="bd record col-4">
<ol>
<li id="record1">00:00.000</li>
<li id="record2">00:00.000</li>
<li id="record3">00:00.000</li>
<li id="record4">00:00.000</li>
<li id="record5">00:00.000</li>
<div class="avg" id="avg">5回平均 00:00.000</div>
</ol>
</div>
<button id="start" type="button" class="btn btn-secondary col-2 mr-3">start</button>
<button id="stop" type="button" class="btn btn-secondary col-2">stop</button>
<button id="reset" type="button" class="btn btn-secondary col-2 offset-5">reset</button>
</div>
</div>
</div>
<script src="main.js"></script>
</body>
</html>