直播HTML代码:无自动播放、窗口自适应
<!DOCTYPE html>
<html>
<head>
<meta charset='UTF-8'>
<title>Live Streaming</title>
<style>
#video-container {
width: 100%;
height: auto;
max-width: 800px;
margin: 0 auto;
}
video {
width: 100%;
height: auto;
}
</style>
</head>
<body>
<div id='video-container'>
<video controls>
<source src='your-video-source-url.mp4' type='video/mp4'>
</video>
</div>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/lRpJ 著作权归作者所有。请勿转载和采集!