forked from 0ui/gif-scrubber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
47 lines (43 loc) · 2.06 KB
/
options.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
<html>
<head>
<title>GIF Scrubber Options</title>
<link rel="stylesheet" href="css/scrubber.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
</head>
<body class="options">
<h3><i class="fa fa-gear"></i> Options</h3>
<ul>
<li><input type="checkbox" id="open-tabs"> <label for="open-tabs">Open scrubber in new tab instead of new window</label></li>
<li><input type="checkbox" id="auto-open"> <label for="auto-open">Automatically open scrubber when opening GIFs</label></li>
<li><input type="checkbox" id="auto-play"> <label for="auto-play">Start playing as soon as image loads</label></li>
<li><input type="checkbox" id="loop-anim"> <label for="loop-anim">Loop animation</label></li>
<li><input type="checkbox" id="mouse-scrub"> <label for="mouse-scrub">Mouse hover automatically scrubs</label></li>
</ul>
<h3><i class="fa fa-tint"></i> Player Background</h3>
<ul>
<li>
<form id="color">
<ul id="color-list">
<li><label class="input-radio" data-color="light"><input name="player-color" type="radio" id="light"> <div class="sample"></div> Light</label></li>
<li><label class="input-radio" data-color="dark"><input name="player-color" type="radio" id="dark"> <div class="sample"></div> Dark</label></li>
<li><label class="input-radio" data-color="checker"><input name="player-color" type="radio" id="checker"> <div class="sample"></div> Checker</label></li>
</ul>
</form>
</li>
</ul>
<button id="save-button">Save</button>
<p id="status">-</p>
<div class="shortcuts">
<h3><i class="fa fa-2x fa-keyboard-o"></i> Keyboard Shortcuts</h3>
<table>
<tr><td>Pause/play GIF</td><td>Space Bar</td></tr>
<tr><td>Go back one frame</td><td>Left Arrow</td></tr>
<tr><td>Go forward one frame</td><td>Right Arrow</td></tr>
<tr><td>Toggle explode view</td><td>E, Esc, Backspace</td></tr>
<tr><td>Open options (this page)</td><td>O</td></tr>
</table>
</div>
<script src="js/lib/jquery.min.js"></script>
<script src="js/options.js"></script>
</body>
</html>