You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1000 B

2 years ago
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Video.js 6.2.8</title>
  6. <link href="css/video-js.css" rel="stylesheet">
  7. <style>
  8. body{background-color: #191919}
  9. .m{ width: 740px; height: 400px; margin-left: auto; margin-right: auto; margin-top: 100px; }
  10. </style>
  11. </head>
  12. <body>
  13. <div class="m">
  14. <video id="my-video" class="video-js" controls preload="auto" width="740" height="400"
  15. poster="m.png" data-setup="{}">
  16. <source src="http://jq22com.qiniudn.com/jq22-sp.mp4" type="video/mp4">
  17. <p class="vjs-no-js">
  18. To view this video please enable JavaScript, and consider upgrading to a web browser that
  19. <a href="http://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a>
  20. </p>
  21. </video>
  22. <script src="js/video.min.js"></script>
  23. <script type="text/javascript">
  24. var myPlayer = videojs('my-video');
  25. videojs("my-video").ready(function(){
  26. var myPlayer = this;
  27. myPlayer.play();
  28. });
  29. </script>
  30. </div>
  31. </body>
  32. </html>