Skip to content

Instantly share code, notes, and snippets.

@max-kk
Last active December 10, 2017 09:33
Show Gist options
  • Save max-kk/5960a30fbf0f222c0326c6ed18eecae9 to your computer and use it in GitHub Desktop.
Save max-kk/5960a30fbf0f222c0326c6ed18eecae9 to your computer and use it in GitHub Desktop.
Video example for lanings
<div style="text-align: center">
<video style="margin-left: 50px;" width="853" height="480" poster="video/maxresdefault.jpg?2" controls="">
<source src="video/amst_video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<script>
$('.video > video').click(function(){
if (this.paused) {
this.play();
} else {
this.pause();
}
});
</script>
<!-- Short TAG -->
<p class="clients_title" style="margin:40px">Видео</p>
<div style="text-align: center">
<video style="margin-left: 50px;" width="853" height="480" poster="video/maxresdefault.jpg?2" controls="" onclick="this.paused?this.play():this.pause();">
<source src="video/amst_video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment