Last active
December 10, 2017 09:33
-
-
Save max-kk/5960a30fbf0f222c0326c6ed18eecae9 to your computer and use it in GitHub Desktop.
Video example for lanings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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