-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
23 lines (22 loc) · 1.01 KB
/
test.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>larkplayer test</title>
<!-- <link rel="stylesheet" type="text/css" href=" https://unpkg.com/larkplayer-ui@latest/dist/larkplayer-ui.css"> -->
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,initial-scale=1.0,user-scalable=no">
</head>
<body>
<video id="my-video" src="https://baikebcs.bdimg.com/baike-other/big-buck-bunny.mp4" width="400" height="300" muted controls></video>
<script type="text/javascript" src="https://unpkg.com/larkplayer@latest/dist/larkplayer.js"></script>
<script type="text/javascript" src="https://unpkg.com/larkplayer-play-muted@latest/dist/index.js"></script>
<!-- <script type="text/javascript" src="./dist/index.js"></script> -->
<script type="text/javascript">
var width = Math.min(document.body.clientWidth, 640);
var player = larkplayer('my-video', {
width: width,
height: width * 9 / 16
});
</script>
</body>
</html>