test.html 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Video.js | HTML5 Video Player</title>
  5. <!-- Chang URLs to wherever Video.js files will be hosted -->
  6. <link href="video-js.css" rel="stylesheet" type="text/css">
  7. <!-- video.js must be in the <head> for older IEs to work. -->
  8. <script src="video.js"></script>
  9. </head>
  10. <body>
  11. <div id="mydiv">
  12. <video id="example_video_1" class="video-js vjs-default-skin" controls preload="none" width="640" height="264"
  13. poster="http://7xo6he.com1.z0.glb.clouddn.com/images/images55/home.jpg"
  14. data-setup="{}">
  15. <source src="http://7xo6he.com1.z0.glb.clouddn.com/hhh5.mp4" type='video/mp4' />
  16. </video>
  17. <p style="width:80%;margin:20px auto;text-align:center;" >您当前的系统需要升级方可体验虚拟漫游</p>
  18. </div>
  19. <script type="text/javascript">
  20. var mydiv = document.getElementById("mydiv");
  21. var mydiv_resize = function() {
  22. mydiv.style.marginLeft = (document.body.clientWidth - 640) / 2+"px";//100为mydiv的宽度
  23. }
  24. mydiv_resize();
  25. window.onresize = mydiv_resize;
  26. </script>
  27. </body>
  28. </html>