-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvideo.html
More file actions
21 lines (21 loc) · 777 Bytes
/
video.html
File metadata and controls
21 lines (21 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charSet="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta http-equiv="Cache-Control" content="no-transform" />
<meta http-equiv="Cache-Control" content="no-siteapp" />
<meta name="referrer" content="never">
<meta name="renderer" content="webkit" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>此刻视频演示</title>
<link rel="stylesheet" href="static/css/video.css">
</head>
<body>
<!-- 视频演示 -->
<section id="main">
<video id="player" src="static/video/show.mp4" autoplay="true" controls webkit-playsinline="true" playsinline=“true”>
</video>
</section>
</body>
</html>