camera-info updates
All checks were successful
ClarkeIS Build / Build-Docker-Image (push) Successful in 3m21s

This commit is contained in:
2025-06-21 18:17:37 -04:00
parent 7b3779999a
commit 8688975c81
2 changed files with 13 additions and 4 deletions

View File

@@ -9,7 +9,7 @@
<body>
<video id="magic_video" class="offscreen">video stream unavailable</video>
<div id="home" style="display: none;">
<button onclick="setdetails()" style="display: none;" id="endcamera">Next</button>
<button onclick="setdetails()" style="display: none; align-self: end;" id="endcamera">Next</button>
<canvas id="precanvas" class="offscreen"></canvas>
<div id="camview">
<div id="video-container">

View File

@@ -30,6 +30,14 @@ body > div > * {
box-sizing: border-box;
}
@media (orientation:portrait) {
#camview {
width: 100vw;
padding-left: 0px;
padding-right: 0px;
}
}
#camview.took {
position: fixed;
@@ -62,10 +70,11 @@ body > div > * {
}
#preview {
width: 100%;
display: inline-block;
width: 100%;
display: inline-block;
}
.offscreen {
position: absolute;
top: -10000px;
@@ -83,4 +92,4 @@ video.unbounded {
border: 1px solid black;
max-width: 80vw;
max-height: 80vh;
}
}