video.html 1.1 KB

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