Overlay on HTML5 Fullscreen Video

后端 未结 2 1952
醉话见心
醉话见心 2020-11-29 05:43

I want to add overlay hotspots on a html5 video which will help me give info about that video. I was able to successfully add it on HTML5 Video\'s normal mode. But, when i c

2条回答
  •  情歌与酒
    2020-11-29 06:07

    This can be solved with a trick. Have a look on this example here: http://jsfiddle.net/carmijoon/pZbkX/show/

    z-index: 2147483647;

    You can also see the code here: http://jsfiddle.net/carmijoon/pZbkX/

    z-index: 2147483647;
    

    you need to add maximum value of z-index which is (z-index: 2147483647;) in to the overlay element. That trick will solve your issue.

    Can you also share your file on jsfiddle?

提交回复
热议问题