How can I 'stop' a html5 video playback, and revert to poster image? Until this.play() is called, the poster image is showing properly.
My code:
<video loop="loop" onMouseOver="this.play();" onMouseOut="this.pause();" poster="/oceans-clip.thumb.jpg">
<source src="/oceans-clip.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' />
<source src="/oceans-clip.webm" type='video/webm; codecs="vp8, vorbis"' />
</video>
This is working as expected, however I want to revert to poster image onMouseOut instead of just pausing the video. What's a good way to do this?