Browse Source

make video element pointable and add controls

main
Hendrik Langer 4 years ago
parent
commit
762661b50a
  1. 8
      raspberry/roberto/views/frontend/templates/index.html

8
raspberry/roberto/views/frontend/templates/index.html

@ -29,6 +29,12 @@
top: 20px;
right: 50px
}
#textoverlay, #controls, .stats-box {
pointer-events: none;
}
#controls canvas {
pointer-events: all;
}
</style>
</head>
<body>
@ -36,7 +42,7 @@
{# <!--<img src="{{ url_for('frontend.video_feed') }}">--> #}
<div id="video">
<video id="stream" autoplay playsinline muted>Your browser does not support video</video>
<video id="stream" autoplay playsinline muted controls>Your browser does not support video</video>
<canvas id="textoverlay"></canvas>
<div id="controls"></div>
</div>

Loading…
Cancel
Save