-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoastmaster_timer.html
49 lines (48 loc) · 2.36 KB
/
toastmaster_timer.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Timer</title>
<link href="css/style.css" rel="stylesheet" type="text/css">
<link crossorigin="anonymous" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="js/timer.js"></script>
</head>
<body onload="reset()">
<!-- Timer -->
<div class="row justify-content-center">
<span class="timer text-xl" id="stopWatch">0:00</span>
</div>
<div class="row justify-content-center">
<!--Time range button-->
<div class="btn-group btn-group-toggle justify-content-center" data-toggle="buttons" id="type" role="group">
<label class="btn btn-outline-secondary justify-content-center">
<input checked id="TableButton" name="timer_type" onclick="set_timer()" type="radio"
value="Table topic(1-2)"> Table topic(1-2)
</label>
<label class="btn btn-outline-secondary justify-content-center">
<input id="Individual" name="timer_type" onclick="set_timer()" type="radio"
value="Individual Evaluator(2-3)"> Individual Evaluator(2-3)
</label>
<label class="btn btn-outline-secondary justify-content-center">
<input id="IceButton" name="timer_type" onclick="set_timer()" type="radio" value="Ice breaker(4-6)"> Ice
breaker(4-6)
</label>
<label class="btn btn-outline-secondary justify-content-center">
<input id="PreparedButton" name="timer_type" onclick="set_timer()" type="radio"
value="Prepared Speech(5-7)"> Prepared Speech(5-7)
</label>
</div>
<!--Timer operation button-->
<div class="btn-group justify-content-center">
<input class="btn btn-default justify-content-center" id="startButton" onclick="timer(); this.disabled = true;"
type="button" value="Start">
<input class="btn btn-default justify-content-center" id="stopButton" onclick="stop()" type="button"
value="Stop">
<input class="btn btn-default justify-content-center" id="resetButton" onclick="reset()" type="button"
value="Reset">
</div>
</div>
</body>
</html>