+ 2
How do i write a html program playing a video when cursor is on video
Cursor is on video
1 Resposta
+ 3
<video onmouseover="this.play();">
<source src="VIDEO_SRC" type="VIDEO_TYPE"/>
</video>
I think that this will work, but I haven’t tried it yet.