-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
32 lines (32 loc) · 940 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>KTPlayer Demo</title>
<link rel="stylesheet" href="./dist/ktPlayer.min.css">
<script src="./dist/ktPlayer.min.js"></script>
<style>
body{
background:url(./images/bg.png) repeat;
}
#container{
width:777px;
margin:100px auto 0;
}
</style>
</head>
<body>
<iframe frameborder="0" scrolling="0" width="91px" height="20px" src="https://ghbtns.com/github-btn.html?user=wangpengfei15975&repo=ktPlayer&type=star&count=true"></iframe>
<div id="container"></div>
<script>
window.onload = function(){
var player = new KTPlayer({
src:'http://oc8qda7cw.bkt.clouddn.com/mayjlee.mp4',
pic:'http://oc8qda7cw.bkt.clouddn.com/mayjlee.png',
root:document.getElementById('container')
});
player.init();
};
</script>
</body>
</html>