-
Notifications
You must be signed in to change notification settings - Fork 332
/
index.react.html
67 lines (48 loc) · 1.57 KB
/
index.react.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Accessible HTML5 Video Player(React Version)</title>
<meta name="description" content="Custom HTML5 video controls and WebVTT captions." />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- PX-VIDEO CSS -->
<link rel="stylesheet" href="css/px-video.css" />
<style>
/*** for demo only ***/
#wrapper {
width: 640px;
margin: 1em auto;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
#brand a,
p a {
border: 1px #fff dotted;
}
#brand a:focus,
p a:focus {
border: 1px #999 dotted;
outline: none;
}
p {
padding-top: 1em;
}
</style>
</head>
<body>
<div id="wrapper">
<div id="brand">
<a href="http://paypal.github.io/"><img src="images/PayPalOpenSourcecolor.svg" width="224" height="28" alt="PayPal open source"></a>
</div>
<h1><img src="images/logo-accessible-HTML5-video-player.svg" width="30" height="30" alt=""> Accessible HTML5 Video Player</h1>
<div id="app"></div>
<p><a href="https://github.com/paypal/accessible-html5-video-player">GitHub</a></p>
</div>
<!-- end page wrapper container -->
<script src="js/strings.js"></script>
<script src="js/px-video.js"></script>
<script src="https://unpkg.com/react@15/dist/react.js"></script>
<script src="https://unpkg.com/react-dom@15/dist/react-dom.js"></script>
<script src="https://unpkg.com/prop-types/prop-types.js"></script>
<script src="js/pxvideo.react.js"></script>
</body>
</html>