CSS
响应式 Web 设计 - 视频(Video)
如果 max-width 属性设置为 100%, 视频播放器会根据屏幕自动调整比例,但不会超过其原始大小
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta charset="utf-8"> <style> video { max-width: 100%; height: auto; } </style> </head> <body> <video width="400" controls> <source src="/examples/mov_bbb.mp4" type="video/mp4"> <source src="/examples/mov_bbb.ogg" type="video/ogg"> Your browser does not support HTML5 video. </video> <p>调整浏览器窗口大小,在宽度小于 400px 时,查看视频播放器的变化。</p> </body> </html>
运行结果:
点击运行 »