I'm trying to create a hotspot in a <video>
HTML 5 tag. I know that it's possible to do it in <img>
elements. For some reason, it's not working for videos.
Here I have an example of my code:
<video ng-src="/some-path" type='video/mp4' autoplay loop usemap="#myArea" />
<map name="myArea">
<area shape="rect" coords="0, 0, 768, 1024" ng-click="onTouch()">
</map>
Do you know if it's possible?
Thanks! :)