DEV Community

Max
Max

Posted on

Answer: How to move svg elements over html5 video and control video playback at the same time?

You could try stopping the pointer events of the svg like so

svg{
 pointer-events: none;
}

Top comments (0)