主頁
CSS
響應式影片
Tryit:響應式影片
執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,深色/淺色
前往 Spaces
<!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="400" controls> <source src="mov_bbb.mp4" type="video/mp4"> <source src="mov_bbb.ogg" type="video/ogg"> Your browser does not support HTML5 video. </video> <p>Resize the browser window to see how the size of the video player will scale when the width is less than 400px.</p> </body> </html>