-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
33 lines (28 loc) · 1.19 KB
/
options.html
File metadata and controls
33 lines (28 loc) · 1.19 KB
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
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body class="options-body">
<h2>Options</h2>
<div class="options-content">
<label title="Playback Time Format" class="options-label">
Style:
<select id="option_style" class="option">
<option title="10:00 (6:40)" value=1>X:XX (Y:YY)</option>
<option title="10:00 -3:20 (6:40)" value=3>X:XX ±Z:ZZ (Y:YY)</option>
<option title="10:00 -3:20" value=2>X:XX ±Z:ZZ</option>
<option title="6:40" value=0>Y:YY</option>
</select>
</label>
<!-- <label class="options-label">
Checkbox:
<input type="checkbox" id="option_checkbox_" />
</label> -->
</div>
<div id="status" class="fade-out">Changes saved</div>
<div class="options-info">
Version: 2.1.0   By: <a class="options-info" href="https://github.com/RoarkCats/playback-time" target="_blank" rel="noopener noreferrer">RoarkCats</a>
</div>
<script src="options.js"></script>
</body>
</html>