使用 CSS max-width 属性响应式视频播放器


可以尝试运行以下代码,使用 max-width 属性让你的视频播放器响应式 −

示例

演示

<!DOCTYPE html>
<html>
   <head>
      <meta name = "viewport" content = "width=device-width, initial-scale = 1.0">
      <style>
         video {
            max-width: 100%;
            height: auto;
         }
      </style>
   </head>
   <body>
      <video width = "300" controls autoplay>
         <source src = "/html5/foo.ogg" type = "video/ogg" />
         <source src = "/html5/foo.mp4" type = "video/mp4" />
      </video>
      <p>To check the effect, you need to resize the browser.</p>
   </body>
</html>

更新于: 04-07-2020

515 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始
广告
© . All rights reserved.