mirror of https://github.com/Lapikud/Viido.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
167 lines
4.3 KiB
167 lines
4.3 KiB
<!DOCTYPE html> |
|
<html lang="et"> |
|
<head> |
|
<meta charset="utf-8"> |
|
<meta content="width=device-width, initial-scale=1" name="viewport"> |
|
<title>Viido</title> |
|
<style> |
|
body { |
|
margin: 40px auto; |
|
max-width: 650px; |
|
line-height: 1.6; |
|
font-size: 18px; |
|
color: #444; |
|
padding: 0 10px; |
|
font-family: Helvetica, Arial, sans-serif; |
|
} |
|
|
|
button { |
|
font-family: Helvetica, Arial, sans-serif; |
|
line-height: 1.6; |
|
} |
|
|
|
h1 { |
|
text-align: center; |
|
} |
|
|
|
a:any-link { |
|
color: black; |
|
} |
|
|
|
.button-grid { |
|
display: grid; |
|
grid-auto-columns: 1fr; |
|
gap: 8px; |
|
user-select: none; |
|
-webkit-user-select: none; /* Chrome all / Safari all */ |
|
-moz-user-select: none; /* Firefox all */ |
|
} |
|
|
|
.button-grid :nth-child(2) { |
|
grid-column: 2; |
|
} |
|
|
|
.button-grid :nth-child(3) { |
|
grid-column: 3; |
|
} |
|
|
|
.button-grid * { |
|
background-color: transparent; |
|
padding: 12px 0; |
|
text-align: center; |
|
text-decoration: none; |
|
font-size: 32px; |
|
-webkit-transition-duration: 0.4s; /* Safari */ |
|
transition-duration: 0.4s; |
|
cursor: pointer; |
|
border: 2px solid #4CAF50; |
|
user-select: none; |
|
} |
|
|
|
.button-grid *:hover { |
|
background-color: #4CAF50; |
|
color: white; |
|
} |
|
|
|
.button-grid *.red { |
|
border: 2px solid #af4c4c; |
|
} |
|
|
|
.button-grid *.red:hover { |
|
background-color: #af4c4c; |
|
} |
|
|
|
.title { |
|
text-align: center; |
|
margin-top: 2em; |
|
} |
|
|
|
#loading { |
|
visibility: hidden; |
|
position: fixed; |
|
width: 100%; |
|
height: 100%; |
|
background-image: url("loader.gif"); |
|
background-color: rgba(102, 102, 102, 0.75); |
|
background-position: center center, top; |
|
background-repeat: no-repeat, repeat; |
|
top: 0; |
|
left: 0; |
|
} |
|
|
|
@media screen and (prefers-color-scheme: dark) { |
|
body { |
|
background-color: #111; |
|
color: #BBB; |
|
} |
|
|
|
button { |
|
color: #BBB; |
|
} |
|
|
|
a:any-link { |
|
color: #BBB; |
|
} |
|
} |
|
</style> |
|
|
|
<script> |
|
function show_loading(visible) { |
|
document.getElementById('loading').style.visibility = visible ? 'visible' : 'hidden'; |
|
} |
|
|
|
function send_mode(value) { |
|
show_loading(true); |
|
const http = new XMLHttpRequest(); |
|
http.open('POST', '/projektor/status', true); |
|
http.onreadystatechange = function () { |
|
if (http.readyState === 4 && http.status === 200) { |
|
show_loading(false); |
|
} |
|
} |
|
http.send('mode=' + value); |
|
} |
|
</script> |
|
</head> |
|
|
|
<body> |
|
<h1>Viido</h1> |
|
<div class="button-grid"> |
|
<a class="button" href="vnc">VNC remote desktop</a> |
|
</div> |
|
|
|
<h2 class="title">Projektori juhtimine</h2> |
|
|
|
<div class="button-grid"> |
|
<button class="red" name="projektor" value="off">OFF</button> |
|
<button name="projektor" value="on">ON</button> |
|
</div> |
|
|
|
<h2 class="title">Sisendi juhtimine</h2> |
|
<div class="button-grid"> |
|
<button name="projektor" value="viido">Viido</button> |
|
<button name="projektor" value="steam">Steam</button> |
|
<button name="projektor" value="volumeup">Vol +</button> |
|
<button name="projektor" value="hdmi">HDMI</button> |
|
<button name="projektor" value="aux">AUX</button> |
|
<button name="projektor" value="volumedown">Vol -</button> |
|
</div> |
|
|
|
<h2 class="title">Linux audio tunnel</h2> |
|
<code> |
|
pacmd load-module module-tunnel-sink-new server=viido |
|
PULSE_SERVER=viido pavucontrol & |
|
pavucontrol & |
|
</code> |
|
|
|
<div id="loading"></div> |
|
<script type="text/javascript"> |
|
const modeButtons = document.querySelectorAll('button[name="projektor"]'); |
|
for (let i = 0; i < modeButtons.length; i++) { |
|
modeButtons[i].addEventListener('click', function (event) { |
|
send_mode(event.target.value); |
|
}); |
|
} |
|
</script> |
|
</body> |
|
</html>
|
|
|