使用 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>
廣告
資料結構
網路
關係資料庫管理系統
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP