forked from alyssaxuu/screenity
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.html
More file actions
37 lines (37 loc) · 1.5 KB
/
settings.html
File metadata and controls
37 lines (37 loc) · 1.5 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
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="../css/settings.css">
<link rel="stylesheet" href="../css/libraries/nice-select.css">
</head>
<body>
<div id="settings">
<div id="settings-container">
<label for="camera-select" id="camera-select-label">Camera source</label>
<select id="camera-select"></select>
<label class='check'>
<input id='flip-camera' type='checkbox'>
<span></span>
<labelp id="flip-label">Flip camera horizontally</labelp>
</label>
<label for="audio-select" id="mic-label">Microphone source</label>
<select id="audio-select"></select>
<label class='check'>
<input id='push-talk' type='checkbox'>
<span></span>
<labelp id="push-label">Push to talk (Ctrl+M)</labelp>
</label>
<label class='check'>
<input type='checkbox' id="persistent">
<span></span>
<labelp id="hover-label">Only show toolbar on hover</labelp>
</label>
</div>
</div>
<div id="arrow"></div>
<script src="../js/libraries/jquery-3.5.1.min.js"></script>
<script src="../js/libraries/jquery.nice-select.min.js"></script>
<script src="../js/settings.js"></script>
</body>
</html>