mirror of
https://github.com/Lapikud/Viido.git
synced 2026-05-08 17:58:35 +00:00
Cleanup, fix code, modernize, reformat, dark mode
This commit is contained in:
163
www/index.html
163
www/index.html
@@ -1,9 +1,9 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html lang="et">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta content="width=device-width, initial-scale=1" name="viewport">
|
||||||
|
<title>Viido</title>
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
margin: 40px auto;
|
margin: 40px auto;
|
||||||
@@ -12,92 +12,63 @@
|
|||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
color: #444;
|
color: #444;
|
||||||
padding: 0 10px;
|
padding: 0 10px;
|
||||||
font-family: Helvetica, Arial, Sans-Serif;
|
font-family: Helvetica, Arial, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
font-family: Helvetica, Arial, sans-serif;
|
||||||
|
line-height: 1.6;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.button {
|
a:any-link {
|
||||||
background-color: #4CAF50; /* Green */
|
|
||||||
border: none;
|
|
||||||
color: white;
|
|
||||||
padding: 16px 0;
|
|
||||||
text-align: center;
|
|
||||||
text-decoration: none;
|
|
||||||
display: inline-block;
|
|
||||||
font-size: 32px;
|
|
||||||
margin: 4px -2px;
|
|
||||||
-webkit-transition-duration: 0.4s; /* Safari */
|
|
||||||
transition-duration: 0.4s;
|
|
||||||
cursor: pointer;
|
|
||||||
width:100%;
|
|
||||||
|
|
||||||
}
|
|
||||||
.button1 {
|
|
||||||
background-color: white;
|
|
||||||
color: black;
|
color: black;
|
||||||
border: 2px solid #4CAF50;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.button2 {
|
.button-grid {
|
||||||
background-color: green;
|
display: grid;
|
||||||
color: black;
|
grid-auto-columns: 1fr;
|
||||||
border: 2px solid #4CAF50;
|
gap: 8px;
|
||||||
width:33%
|
|
||||||
}
|
|
||||||
|
|
||||||
.radio-toolbar {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
width: 100%;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
user-select: none;
|
user-select: none;
|
||||||
-webkit-user-select: none; /* Chrome all / Safari all */
|
-webkit-user-select: none; /* Chrome all / Safari all */
|
||||||
-moz-user-select: none; /* Firefox all */
|
-moz-user-select: none; /* Firefox all */
|
||||||
-ms-user-select: none; /* IE 10+ */
|
|
||||||
user-select: none; /* Likely future */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.radio-toolbar input[type="button"] {
|
.button-grid :nth-child(2) {
|
||||||
display: none;
|
grid-column: 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
.radio-toolbar label {
|
.button-grid :nth-child(3) {
|
||||||
background-color: white; /* RED */
|
grid-column: 3;
|
||||||
border: none;
|
}
|
||||||
color: black;
|
|
||||||
|
.button-grid * {
|
||||||
|
background-color: transparent;
|
||||||
padding: 12px 0;
|
padding: 12px 0;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
display: inline-block;
|
|
||||||
font-size: 32px;
|
font-size: 32px;
|
||||||
margin: 0 4px;
|
|
||||||
-webkit-transition-duration: 0.4s; /* Safari */
|
-webkit-transition-duration: 0.4s; /* Safari */
|
||||||
transition-duration: 0.4s;
|
transition-duration: 0.4s;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
flex: 1 0 auto;
|
|
||||||
border: 2px solid #4CAF50;
|
border: 2px solid #4CAF50;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.rbnt{
|
.button-grid *:hover {
|
||||||
width: 30%;
|
|
||||||
transition-duration: 0s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rbnt:active{
|
|
||||||
background-color: #4CAF50;
|
background-color: #4CAF50;
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
.radio-toolbar lable.red {
|
|
||||||
|
.button-grid *.red {
|
||||||
border: 2px solid #af4c4c;
|
border: 2px solid #af4c4c;
|
||||||
}
|
}
|
||||||
|
|
||||||
.button1:hover {
|
.button-grid *.red:hover {
|
||||||
background-color: #4CAF50;
|
background-color: #af4c4c;
|
||||||
color: white;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
@@ -105,8 +76,7 @@
|
|||||||
margin-top: 2em;
|
margin-top: 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
#loading
|
#loading {
|
||||||
{
|
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@@ -118,21 +88,34 @@
|
|||||||
top: 0;
|
top: 0;
|
||||||
left: 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>
|
</style>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
function show_loading(visible)
|
function show_loading(visible) {
|
||||||
{
|
|
||||||
document.getElementById('loading').style.visibility = visible ? 'visible' : 'hidden';
|
document.getElementById('loading').style.visibility = visible ? 'visible' : 'hidden';
|
||||||
}
|
}
|
||||||
|
|
||||||
function send_mode(value)
|
function send_mode(value) {
|
||||||
{
|
|
||||||
show_loading(true);
|
show_loading(true);
|
||||||
var http = new XMLHttpRequest();
|
const http = new XMLHttpRequest();
|
||||||
http.open('POST', '/projektor/status', true);
|
http.open('POST', '/projektor/status', true);
|
||||||
http.onreadystatechange = function () {
|
http.onreadystatechange = function () {
|
||||||
if (http.readyState == 4 && http.status == 200) {
|
if (http.readyState === 4 && http.status === 200) {
|
||||||
show_loading(false);
|
show_loading(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -143,44 +126,27 @@
|
|||||||
|
|
||||||
<body>
|
<body>
|
||||||
<h1>Viido</h1>
|
<h1>Viido</h1>
|
||||||
|
<div class="button-grid">
|
||||||
<a href="iris" class="button button1">Mopidy music</a><br />
|
<a class="button" href="vnc">VNC remote desktop</a>
|
||||||
<a href="vnc" class="button button1">VNC remote desktop</a><br />
|
</div>
|
||||||
|
|
||||||
<h2 class="title">Projektori juhtimine</h2>
|
<h2 class="title">Projektori juhtimine</h2>
|
||||||
|
|
||||||
<div class="radio-toolbar">
|
<div class="button-grid">
|
||||||
<input type="button" id="power1" name="power" value="off">
|
<button class="red" name="projektor" value="off">OFF</button>
|
||||||
<label for="power1" class="red">OFF</label>
|
<button name="projektor" value="on">ON</button>
|
||||||
|
|
||||||
<input type="button" id="power2" name="power" value="on">
|
|
||||||
<label for="power2">ON</label>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h2 class="title">Sisendi juhtimine</h2>
|
<h2 class="title">Sisendi juhtimine</h2>
|
||||||
|
<div class="button-grid">
|
||||||
<div class="radio-toolbar">
|
<button name="projektor" value="viido">Viido</button>
|
||||||
|
<button name="projektor" value="steam">Steam</button>
|
||||||
<input type="button" id="r2" name="receiver" value="viido">
|
<button name="projektor" value="volumeup">Vol +</button>
|
||||||
<label class="rbnt" for="r2">Viido</label>
|
<button name="projektor" value="hdmi">HDMI</button>
|
||||||
|
<button name="projektor" value="aux">AUX</button>
|
||||||
<input type="button" id="r3" name="receiver" value="steam">
|
<button name="projektor" value="volumedown">Vol -</button>
|
||||||
<label class="rbnt" for="r3">Steam</label>
|
|
||||||
|
|
||||||
<input type="button" id="v1" name="receiver" value="volumeup">
|
|
||||||
<label class="rbnt" for="v1">Vol +</label>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<br>
|
|
||||||
<div class="radio-toolbar">
|
|
||||||
<input type="button" id="r4" name="receiver" value="hdmi">
|
|
||||||
<label class="rbnt" for="r4">HDMI</label>
|
|
||||||
|
|
||||||
<input type="button" id="r5" name="receiver" value="aux">
|
|
||||||
<label class="rbnt" for="r5">AUX</label>
|
|
||||||
|
|
||||||
<input type="button" id="v2" name="receiver" value="volumedown">
|
|
||||||
<label class="rbnt" for="v2">Vol -</label>
|
|
||||||
</div>
|
|
||||||
<h2 class="title">Linux audio tunnel</h2>
|
<h2 class="title">Linux audio tunnel</h2>
|
||||||
<code>
|
<code>
|
||||||
pacmd load-module module-tunnel-sink-new server=viido
|
pacmd load-module module-tunnel-sink-new server=viido
|
||||||
@@ -190,10 +156,9 @@ pavucontrol &
|
|||||||
|
|
||||||
<div id="loading"></div>
|
<div id="loading"></div>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
var modebuttons = document.querySelectorAll('.radio-toolbar input');
|
const modeButtons = document.querySelectorAll('button[name="projektor"]');
|
||||||
for (var i = 0; i < modebuttons.length; i++)
|
for (let i = 0; i < modeButtons.length; i++) {
|
||||||
{
|
modeButtons[i].addEventListener('click', function (event) {
|
||||||
modebuttons[i].addEventListener('click', function(event) {
|
|
||||||
send_mode(event.target.value);
|
send_mode(event.target.value);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user