发布网友 发布时间:2022-04-24 17:42
共1个回答
热心网友 时间:2022-04-21 01:49
视频不是背景颜色,也不是背景图片,只能在页面写,或者用js调用
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
</head>
<body style="margin:0;padding:0;">
<video controls width="670px" height="500px">
<source src="04.webm" type="video/webm">
<source src="04.mp4" type="video/mp4">
<source src="04.mov" type="video/mov">
<div style="width:1000px; text-align:center; margin-top:200px;">
您的浏览器不支持webm和mp4视频格式<br />
推荐使用Firefox、Chrome、Opera
</div>
</video>
</body>
</html>
css只能设置页面的样式,而不能设置页面的标签,js可以动态添加标签,但是如果内容较少,不如直接在页面写