aboutsummaryrefslogtreecommitdiff
path: root/hsm-web/Html/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'hsm-web/Html/index.html')
-rw-r--r--hsm-web/Html/index.html22
1 files changed, 1 insertions, 21 deletions
diff --git a/hsm-web/Html/index.html b/hsm-web/Html/index.html
index 814f6e7..60ec1a3 100644
--- a/hsm-web/Html/index.html
+++ b/hsm-web/Html/index.html
@@ -5,19 +5,9 @@
<meta charset="utf-8"/>
</head>
<body>
- <img id="cam_view" />
+ <h1>HsMouse</h1>
</body>
<script>
- updateImg = () => {
- fetch("cam.png")
- .then(response => response.blob())
- .then(function(myBlob){
- URL.revokeObjectURL(cam_view.src)
- cam_view.src = URL.createObjectURL(myBlob)
- updateImg()
- })
- }
- updateImg()
</script>
<style>
body, html {
@@ -28,15 +18,5 @@
margin: 0;
position: relative;
}
- #cam_view {
- left: 50%;
- margin: auto;
- max-height: calc(100% - 20px);
- max-width: calc(100% - 20px);
- outline: 2px solid #586e75;
- position: absolute;
- top: 10px;
- transform: translate(-50%, 0);
- }
</style>
</html>