Popravljeni stili, izboljsave
parent
f4c5b9e954
commit
9356828055
|
@ -42,7 +42,7 @@
|
||||||
<section class="zaslon">
|
<section class="zaslon">
|
||||||
<!--video id="videofeed" muted="" autoplay="" playsinline=""></video-->
|
<!--video id="videofeed" muted="" autoplay="" playsinline=""></video-->
|
||||||
<img id="videofeed" src="/stream"></video>
|
<img id="videofeed" src="/stream"></video>
|
||||||
<button id="predvajaj">⏵</button>
|
<!--button id="predvajaj">⏵</button-->
|
||||||
|
|
||||||
<section class="gumbi">
|
<section class="gumbi">
|
||||||
<button id="levo"></button>
|
<button id="levo"></button>
|
||||||
|
|
|
@ -0,0 +1,30 @@
|
||||||
|
var server = null;
|
||||||
|
//if(window.location.protocol === 'http:')
|
||||||
|
//server = "http://" + window.location.hostname + ":8088/janus";
|
||||||
|
//else
|
||||||
|
//server = "https://" + window.location.hostname + ":8089/janus";
|
||||||
|
//server = window.location.protocol + '//' + window.location.hostname + '/janus';
|
||||||
|
//server = window.location.protocol + '//' + window.location.hostname + ':8089/janus';
|
||||||
|
//server = '/janus';
|
||||||
|
//server = "ws://" + window.location.hostname + ":8188/";
|
||||||
|
//server = "ws://" + window.location.hostname + ":8188/";
|
||||||
|
//server = "wss://" + window.location.hostname + ":8989/";
|
||||||
|
server = "wss://janus.rhiz0.me/";
|
||||||
|
//server = '/janus';
|
||||||
|
|
||||||
|
var turnUrl = 'turn:turn.rhiz0.me:5349';
|
||||||
|
//var stunUrl = 'stun:turn.rhiz0.me:5349';
|
||||||
|
var turnUser = 'turnserver';
|
||||||
|
var turnPass = '85ThXzKLce2oZkXz76tM0tibWL88Ik';
|
||||||
|
|
||||||
|
var iceServers = [{
|
||||||
|
urls: turnUrl,
|
||||||
|
username: turnUser,
|
||||||
|
credential: turnPass
|
||||||
|
}]
|
||||||
|
|
||||||
|
var BOT="http://192.168.32.139/";
|
||||||
|
|
||||||
|
// Koliko milisekund se naj vrtijo propelerji?
|
||||||
|
var DOLZINA=1000;
|
||||||
|
var PAVZA=1000;
|
|
@ -46,4 +46,4 @@ window.addEventListener('DOMContentLoaded', function () {
|
||||||
onemogociGumbe();
|
onemogociGumbe();
|
||||||
omogociGumbe(DOLZINA + PAVZA);
|
omogociGumbe(DOLZINA + PAVZA);
|
||||||
});
|
});
|
||||||
}
|
});
|
||||||
|
|
12
www/stil.css
12
www/stil.css
|
@ -38,6 +38,7 @@ h2 {
|
||||||
}
|
}
|
||||||
|
|
||||||
#videofeed {
|
#videofeed {
|
||||||
|
display: block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: auto;
|
height: auto;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
@ -46,7 +47,8 @@ h2 {
|
||||||
border-top-right-radius: 50% 12%;
|
border-top-right-radius: 50% 12%;
|
||||||
border-bottom-left-radius: 50% 12%;
|
border-bottom-left-radius: 50% 12%;
|
||||||
border-bottom-right-radius: 50% 12%;
|
border-bottom-right-radius: 50% 12%;
|
||||||
min-height: 482.5px;
|
/*min-height: 482.5px;*/
|
||||||
|
min-height: 75%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#predvajaj {
|
#predvajaj {
|
||||||
|
@ -71,7 +73,7 @@ h2 {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cakam:after {
|
#videofeed:before {
|
||||||
display: block;
|
display: block;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
content: 'Nalaganje...';
|
content: 'Nalaganje...';
|
||||||
|
@ -90,7 +92,7 @@ h2 {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: none;
|
/*display: none;*/
|
||||||
}
|
}
|
||||||
|
|
||||||
.gumbi button {
|
.gumbi button {
|
||||||
|
@ -117,12 +119,12 @@ button[disabled] {
|
||||||
}
|
}
|
||||||
|
|
||||||
#levo {
|
#levo {
|
||||||
left: 5rem;
|
left: calc(20% - 2rem);
|
||||||
bottom: 2rem;
|
bottom: 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
#desno {
|
#desno {
|
||||||
right: 5rem;
|
right: calc(20% - 2rem);
|
||||||
bottom: 2rem;
|
bottom: 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue