-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
34 lines (30 loc) · 1018 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Timepicker.js — Example</title>
</head>
<body>
<h1>
<a href="https://github.com/jonataswalker/timepicker.js" class="link">Timepicker.js</a>
— Example
</h1>
<div class="main-container">
<div class="left-container">
<h3>Focusing:</h3>
<div>
<input type="text" id="focus-trigger" class="icon" placeholder="Time" />
</div>
</div>
<div class="right-container">
<h3 style="margin-top: 10px;">Triggering:</h3>
<div class="flex">
<input type="text" id="click-trigger-input" class="center" placeholder="Time" />
<button id="click-trigger"><i class="icon"></i></button>
</div>
</div>
</div>
<script type="module" src="/lib-testing/index.ts"></script>
</body>
</html>