-
Notifications
You must be signed in to change notification settings - Fork 53
/
index.html
67 lines (66 loc) · 4.94 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Time Keeper</title>
<script type="text/javascript" src="./js/jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="./js/jquery.timer.js"></script>
<script type="text/javascript" src="./bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="./js/purify.min.js"></script>
<script type="text/javascript" src="./js/timekeeper.js"></script>
<meta property="og:title" content="Time Keeper" />
<meta property="og:description" content="An easy-to-use timer designed for academic conferences. Includes notification chimes. " />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://maruta.github.io/timekeeper/" />
<meta property="og:image" content="https://maruta.github.io/timekeeper/icon/favicon-512.png" />
<meta property="og:site_name" content="Time Keeper" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Time Keeper" />
<meta name="twitter:description" content="An easy-to-use timer designed for academic conferences. Includes notification chimes. " />
<meta name="twitter:image" content="https://maruta.github.io/timekeeper/icon/favicon-512.png" />
<meta name="description" content="Time Keeper is an HTML5 and JavaScript-based timer designed specifically for academic conferences. It comes with a notification chime and allows users to save their settings through the URL. You can even customize its appearance according to your preferences. Use it online or save a local copy from our repository.">
<link href="./bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="./css/timekeeper.css" rel="stylesheet">
<link rel="icon" href="./favicon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="./icon/favicon-180.png" type="image/svg+xml">
<link rel="manifest" href="./manifest.webmanifest">
</head>
<body>
<nav class="navbar navbar-default navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<a class="navbar-brand" id="seturl" data-toggle="tooltip" data-placement="bottom" title="Link to URL for this setting" href="#">
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 32 32" style="vertical-align: top;display: inline-block;"><style>path {fill:#d7d7d7}</style><path d="M26.38751,9.38007l.72864-.72864.25549.25549a.64943.64943,0,0,0,.91565,0l.9599-.9599a.64932.64932,0,0,0,0-.91565L26.96863,4.75281a.64932.64932,0,0,0-.91565,0l-.9599.95984a.64939.64939,0,0,0,0,.91571l.25549.25549-.72864.72864A13.43586,13.43586,0,0,0,17.5,4.588V3.932h1.85254A.6494.6494,0,0,0,20,3.28448V1.07941A.64939.64939,0,0,0,19.35254.432H12.64746A.64939.64939,0,0,0,12,1.07941V3.28448a.6494.6494,0,0,0,.64746.64747H14.5v.656A13.4978,13.4978,0,1,0,26.38751,9.38007ZM16,28.5A10.5,10.5,0,1,1,26.5,18,10.51188,10.51188,0,0,1,16,28.5Z"/><path d="M17,9.5a1,1,0,0,0-2,0s-1,7.76288-1,8.5a2,2,0,0,0,4,0C18,17.263,17,9.5,17,9.5Z"/></svg>
<span class="hidden-xs" style="vertical-align: top;display: inline-block;">Time Keeper</span>
</a>
</div>
<ul class="nav navbar-nav">
<li id="standby" class="active"><a href="#standby"><span class="glyphicon glyphicon-stop" aria-hidden="true"></span> <span class="hidden-xs">Standby</span></a></li>
<li id="start"><a href="#start"><span class="glyphicon glyphicon-play" aria-hidden="true"></span> <span class="hidden-xs">Start</span></a></li>
<li id="pause"><a href="#pause"><span class="glyphicon glyphicon-pause" aria-hidden="true"></span> <span class="hidden-xs">Pause</span></a></li>
</ul>
<form class="navbar-form navbar-left" action="">
<div class="form-group">
<input id="time0" class="form-control" data-toggle="tooltip" data-placement="bottom" title="Initial Time. Negative value for countdown" type="text" style="width:5em;" pattern="[\-:0-9]*">
<input id="time1" class="form-control" data-toggle="tooltip" data-placement="bottom" title="1st bell" type="text" style="width:5em;" pattern="[\-:0-9]*">
<input id="time2" class="form-control" data-toggle="tooltip" data-placement="bottom" title="2nd bell" type="text" style="width:5em;" pattern="[\-:0-9]*">
<input id="time3" class="form-control" data-toggle="tooltip" data-placement="bottom" title="3rd bell" type="text" style="width:5em;" pattern="[\-:0-9]*">
</div>
</form>
<ul class="nav navbar-nav navbar-right">
<li id="soundcheck"><a href="#soundcheck" data-toggle="tooltip" data-placement="bottom" title="Sound Check"><span class="glyphicon glyphicon-volume-up" aria-hidden="true"></span> <span class="hidden-xs hidden-sm">Sound Check</span></a></li>
</ul>
</div><!-- /.container-fluid -->
</nav>
<div id="time">
00:00
</div>
<div id="state">
STANDBY
</div>
<div contenteditable="true" id="info">
STANDBY
</div>
</body>
</html>