videoTest.html 694 B

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <html lang='en'>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta content='width=device-width, initial-scale=1.0,user-scalable=no' name='viewport'>
  6. <meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible'>
  7. <style type="text/css">
  8. .videoContent{
  9. width: 100vw;
  10. height: 100vh;
  11. object-fit: fill;
  12. }
  13. .videoBg{
  14. width: 100vw;
  15. height:100vh;
  16. background-color: white;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <div class="videoBg">
  22. <video class="videoContent" controls src="https://dm.static.elab-plus.com/bjJinMaoFu/item_video_0.mp4"></video>
  23. </div>
  24. </body>
  25. <script></script>
  26. </html>