<video id="video" width="100%" height="100%" controls src="test.mp4"></video>
<svg id="svg" width="100%" height="100%" style="position: absolute; left:0px; background:gray; opacity:0.5; pointer-events: none;"></svg>
<script>
//some test code
let v = document.getElementById("video");
const testHandler = () => {
let v_w = v.videoWidth;
let v_h = v.videoHeight;
let c_w = v.clientWidth;
let c_h = v.clientHeight;
console.log(v_w, v_h, c_w,
…
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)