video2.html 875 B

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE html>
  2. <meta name="viewport" content="user-scalable=0" />
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <meta name="viewport"
  5. content="width=device-width,initial-scale=1.0, minimum-scale=0.2 maximum-scale=1.0, user-scalable=no" />
  6. <style>
  7. html,
  8. body {
  9. height: 100%;
  10. margin: 0;
  11. padding: 0;
  12. overflow: hidden;
  13. background: rgba(0, 0, 0, 0.2);
  14. }
  15. .juzhong {
  16. width: 960px;
  17. height: 600px;
  18. top: 50%;
  19. left: 50%;
  20. transform: translate(-50%,-50%);
  21. position: absolute;
  22. }
  23. .juzhong video{
  24. width: 100%;
  25. height: 100%;
  26. }
  27. </style>
  28. <body>
  29. <!--外层div绝对定位,左上定点居中-->
  30. <div class="juzhong">
  31. <video src="./video2.mp4" controls></video>
  32. </div>
  33. </body>