40 lines
917 B
HTML
40 lines
917 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Qiniu Web Player Basic Demo</title>
|
|
<script src="https://zhibo.weisha100.cn/qiniu-web-player-1.0.0.js"></script>
|
|
<style>
|
|
html {
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
html::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
body {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="player" style="width:100%;height:100%;"></div>
|
|
|
|
<script>
|
|
var container = document.getElementById("player");
|
|
var player = new QPlayer({
|
|
url: "https://pili-live-hls.zhibo.weisha100.cn/ceshi5/cehsi.m3u8?sign=36f6952fbae38a8e7a1273ff5223b257&t=5cb04057",
|
|
container: container,
|
|
autoplay: true,
|
|
});
|
|
|
|
</script>
|
|
</body>
|
|
|
|
</html> |