video masking in html
Posted
by
Yesvinkumar
on Stack Overflow
See other posts from Stack Overflow
or by Yesvinkumar
Published on 2012-06-27T09:13:28Z
Indexed on
2012/06/27
9:15 UTC
Read the original article
Hit count: 158
How we mask the video in html with available SVG?
I tried with following code but it will not dispalying in chrome?
<video id="video_target" src="oceans-clip.ogg" type="video/ogg" autoplay></video>
<svg>
<mask id="video_mask" maskUnits="userSpaceOnUse">
<text x="300" y="190">VIDEO</text>
</mask>
</svg>
Can anyone please answer how to display a SVG masked video in chrome?
Thanks in advance.
© Stack Overflow or respective owner