diff options
Diffstat (limited to 'www/index.html')
-rw-r--r-- | www/index.html | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/www/index.html b/www/index.html index 19b109c..b01fea4 100644 --- a/www/index.html +++ b/www/index.html @@ -49,6 +49,7 @@ <img id="window-image" src="dump/ui/bg-say.png" alt=""> <div id="who"></div> <div id="say"></div> + <img id="ctc" src="dump/ui/ctc.png" style="display: none"> </div> <div id="main-menu" style="display: none;"> <div id="main-menu-buttons" style="top: 377px; position: absolute; left: 81px;"> @@ -67,18 +68,18 @@ <div id="dialogs" style="display: none; position: absolute; top: 50%; width: 504px; height: 395px; background: url(dump/ui/bg-config.png); left: 50%; margin-left: -252px; margin-top: -197.5px;"> <div id="options" style="padding: 10px 20px;"> <h2>Options</h2> - <label class="button button-enabled"><input type="checkbox" id="hdisable"> <span>Disable adult content</span></label> - <label class="button button-enabled"><input type="checkbox" id="fullscreen"> <span>Fullscreen mode</span></label> - <label class="button button-enabled"><input type="checkbox" id="skip-unread"> <span>Skip unread text</span></label> - <label class="button button-enabled"><input type="checkbox" id="skip-after-choices"> <span>Keep skipping after choices</span></label> - <label class="button button-enabled"><input type="checkbox" id="use-webp"> <span>Use WebP images (less bandwidth, more CPU)</span></label> - <label class="button button-enabled"><input type="checkbox" id="scale-video"> <span>Scale video to fullscreen (decreases performance)</span></label> + <label class="button button-enabled"><input type="checkbox" class="option" id="hdisable"> <span>Disable adult content</span></label> + <label class="button button-enabled"><input type="checkbox" class="option" id="skipUnread"> <span>Skip unread text</span></label> + <label class="button button-enabled"><input type="checkbox" class="option" id="skipAfterChoices"> <span>Keep skipping after choices</span></label> + <label class="button button-enabled"><input type="checkbox" class="option" id="useWebP"> <span>Use WebP images (less bandwidth, more CPU)</span></label> + <label class="button button-enabled"><input type="checkbox" class="option" id="fullscreen"> <span>Scale content</span></label> + <label class="button button-enabled"><input type="checkbox" class="option" id="scaleVideo"> <span>Scale video</span></label> - <label><input type="range" id="text-speed"> <span class="tr">Text speed</span></label> - <label><input type="range" id="auto-mode-delay"> <span class="tr">Auto mode delay</span></label> + <label><input type="range" min="0.0" max="1.0" step="0.001" class="option" id="textSpeed"> <span class="tr">Text speed</span></label> + <label><input type="range" min="0.0" max="1.0" step="0.001" class="option" id="autoModeDelay"> <span class="tr">Auto mode delay</span></label> - <label><input type="range" id="music-volume"> <span class="tr">Music volume</span></label> - <label><input type="range" id="sfx-volume"> <span class="tr">SFX volume</span> <span id="test-sfx" class="button button-enabled"><img src="dump/ui/bt-musicplay.png"> Test</span></label> + <label><input type="range" min="0.0" max="1.0" step="0.001" class="option" id="musicVolume"> <span class="tr">Music volume</span></label> + <label><input type="range" min="0.0" max="1.0" step="0.001" class="option" id="sfxVolume"> <span class="tr">SFX volume</span> <span id="test-sfx" class="button button-enabled"><img src="dump/ui/bt-musicplay.png"> Test</span></label> </div> <div id="return" class="button button-enabled" style="position: absolute; bottom: 15px; right: 20px;"> <img src="dump/ui/bt-return.png"> |