mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2026-02-01 18:41:54 +08:00
adjustable stream size
This commit is contained in:
@@ -46,11 +46,23 @@
|
||||
System ↴
|
||||
</a>
|
||||
<div class="ctl-dropdown-content">
|
||||
<button onclick="ui.showWindow('keyboard-window')">• Show keyboard</button>
|
||||
<button onclick="ui.showWindow('stream-window')">• Show stream</button>
|
||||
<button onclick="ui.showWindow('about-window')">• Show about</button>
|
||||
<hr>
|
||||
<button onclick="ui.showWindow('keyboard-window')">• Show keyboard</button>
|
||||
<hr>
|
||||
<button onclick="ui.showWindow('stream-window')">• Show stream</button>
|
||||
<button disabled id="stream-reset-button" onclick="stream.clickResetButton();">• Reset stream</button>
|
||||
<hr>
|
||||
<div data-dont-hide-menu id="stream-size">
|
||||
Stream size: <span id="stream-size-counter">100%</span>
|
||||
<div id="stream-size-slider-box">
|
||||
<input
|
||||
type="range" min="50" max="150" value="100" step="10"
|
||||
oninput="stream.resize(this.value);"
|
||||
onchange="stream.resize(this.value);"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
Reference in New Issue
Block a user