-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathVideo player using HTML5.html
73 lines (66 loc) · 1.04 KB
/
Video player using HTML5.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<style type="text/css">
body
{
}
header,section,nav,footer,article,hgroup,aside{
display:block;
}
#wrapper
{
margin:20px;
}
#skin
{
width:700px;
padding:5px;
padding-top:40px;
background:orange;
border:2px solid black;
border-radius:20px;
}
nav
{
}
#buttons
{
float:left;
width:70px;
height:22px;
}
</style>
<script type="text/javascript">
</script>
</head>
<body style="background-color:#8EE5EE ;">
<div id="big_wrapper">
<video src="stepper motor.mp4" controls loop poster="bg.JPG" width="640px" height="360px"></video>
</div>
<!--
//creating own custom video player: but not working..:( need help !
<div id="wrapper">
<section id="skin">
<video id="myMovie" width="640px" height="360px">
<source src="Kun Fayaa Kun Song Promo - Rockstar_HD.mp4">
</video>
<nav>
<div id="buttons">
<button type="button" id="play">Play</button>
</div>
<div id="defaultBar">
<div id="progressBar"></div>
</div>
</div>
<div>
</div>
<div style="clear:both"></div>
</div>
</nav>
</section>
-->
</div>
</body>
</html>