index.html 945 B

123456789101112131415161718192021222324252627282930313233
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>videojs-flash Demo</title>
  6. <link href="node_modules/video.js/dist/video-js.css" rel="stylesheet">
  7. <style>
  8. .video-js {
  9. width: 1280px;
  10. height: 720px;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <video id="videojs-flash-player" class="video-js vjs-default-skin" controls>
  16. <source src="//vjs.zencdn.net/v/oceans.mp4" type='video/mp4'>
  17. <source src="//vjs.zencdn.net/v/oceans.webm" type='video/webm'>
  18. </video>
  19. <ul>
  20. <li><a href="test/">Run unit tests in browser.</a></li>
  21. </ul>
  22. <script src="node_modules/es5-shim/es5-shim.js"></script>
  23. <script src="node_modules/video.js/dist/video.js"></script>
  24. <script src="dist/videojs-flash.js"></script>
  25. <script>
  26. (function(window, videojs) {
  27. var player = window.player = videojs('videojs-flash-player', {
  28. techOrder: ['flash']
  29. });
  30. }(window, window.videojs));
  31. </script>
  32. </body>
  33. </html>