Skip to content

Instantly share code, notes, and snippets.

@anythinggraphic
Last active November 17, 2016 22:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anythinggraphic/80b920d860753308e4fb68bd5e09e361 to your computer and use it in GitHub Desktop.
Save anythinggraphic/80b920d860753308e4fb68bd5e09e361 to your computer and use it in GitHub Desktop.
When you click on an HTML5 video poster, play the video.
<script>var v = document.getElementById("movie");
v.onclick = function() {
v.paused ? v.play() : v.pause()
};</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment