mirror of
https://github.com/SoPat712/videospeed.git
synced 2025-08-21 18:08:46 -04:00
cleanup options page
This commit is contained in:
81
options.html
81
options.html
@@ -1,49 +1,50 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>HTML5 Video Playback Speed Controller Options</title>
|
||||
<link rel="stylesheet" type="text/css" href="options.css" />
|
||||
<title>Video Speed Controller: Options</title>
|
||||
<link rel="stylesheet" href="options.css" />
|
||||
<script src="options.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>HTML5 Video Playback Speed Controller</h1>
|
||||
<h1>Video Speed Controller</h1>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
<h3>Shortcuts</h3>
|
||||
<div class="row">
|
||||
<label for="rewindKeyInput">Rewind</label>
|
||||
<input id="rewindKeyInput" placeholder="press a key" type="text" value=""/>
|
||||
</div>
|
||||
<div class="row">
|
||||
<label for="slowerKeyInput">Slow Down</label>
|
||||
<input id="slowerKeyInput" placeholder="press a key" type="text" value=""/>
|
||||
</div>
|
||||
<div class="row">
|
||||
<label for="fasterKeyInput">Speed Up</label>
|
||||
<input id="fasterKeyInput" placeholder="press a key" type="text" value=""/>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
|
||||
<section>
|
||||
<h3>Shortcuts</h3>
|
||||
<div class="row">
|
||||
<label for="rewindKeyInput">Rewind</label>
|
||||
<input id="rewindKeyInput" placeholder="press a key" type="text" value=""/>
|
||||
</div>
|
||||
<div class="row">
|
||||
<label for="slowerKeyInput">Slow Down</label>
|
||||
<input id="slowerKeyInput" placeholder="press a key" type="text" value=""/>
|
||||
</div>
|
||||
<div class="row">
|
||||
<label for="fasterKeyInput">Speed Up</label>
|
||||
<input id="fasterKeyInput" placeholder="press a key" type="text" value=""/>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h3>Others</h3>
|
||||
<div class="row">
|
||||
<label for="rewindTime">Rewind Time (s)</label>
|
||||
<input id="rewindTime" type="text" value=""/>
|
||||
</div>
|
||||
<div class="row">
|
||||
<label for="speedStep">Speed Change Step</label>
|
||||
<input id="speedStep" type="text" value=""/>
|
||||
</div>
|
||||
<div class="row">
|
||||
<label for="rememberSpeed">Remember Playback Speed</label>
|
||||
<input id="rememberSpeed" type="checkbox"/>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<button id="save">Save</button> <button id="restore">Restore Defaults</button>
|
||||
<div id="status"></div>
|
||||
|
||||
<div class="row">
|
||||
<label for="rewindTime">Rewind Time (s)</label>
|
||||
<input id="rewindTime" type="text" value=""/>
|
||||
</div>
|
||||
<div class="row">
|
||||
<label for="speedStep">Speed Change Step</label>
|
||||
<input id="speedStep" type="text" value=""/>
|
||||
</div>
|
||||
<div class="row">
|
||||
<label for="rememberSpeed">Remember Playback Speed</label>
|
||||
<input id="rememberSpeed" type="checkbox"/>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<button id="save">Save</button>
|
||||
<button id="restore">Restore Defaults</button>
|
||||
|
||||
<div id="status"></div>
|
||||
</body>
|
||||
<script type="text/javascript" src="options.js"></script>
|
||||
</html>
|
||||
</html>
|
||||
|
Reference in New Issue
Block a user