aboutsummaryrefslogtreecommitdiffstats
path: root/docs/index.html
blob: 5205c4f6747b9a8e0a361517321a14a5a18312d8 (plain)
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!doctype html>
<html lang="en">
    <head>
        <meta charset="utf-8" />
        <title>Plyr - A simple HTML5 media player</title>
        <meta name="description" content="A simple HTML5 media player with custom controls and WebVTT captions.">
        <meta name="author" content="Sam Potts">
        <meta name="viewport" content="width=device-width, initial-scale=1">

        <!-- Styles -->
        <link rel="stylesheet" href="https://cdn.plyr.io/1.2.5/plyr.css?2">

        <!-- Docs styles -->
        <link rel="stylesheet" href="https://cdn.plyr.io/1.2.5/docs.css?1">
    </head>
    <body>
        <header>
            <h1>Plyr</h1>
            <p>A simple HTML5 media player with custom controls and WebVTT captions by <a href="https://twitter.com/sam_potts" target="_blank">@sam_potts</a></p>
            <nav>
                <ul>
                    <li>
                        <a href="https://github.com/selz/plyr" target="_blank" class="btn btn-primary">Download on GitHub</a>
                        <span class="btn-count js-stargazers-count">&hellip;</span>
                    </li>
                    <li>
                        <a href="https://twitter.com/intent/tweet?text=A+simple+HTML5+media+player+with+custom+controls+and+WebVTT+captions.&url=http%3A%2F%2Fplyr.io&via=Sam_Potts" target="_blank" class="btn js-popup" data-window-height="250" data-window-width="500">Tweet</a>
                        <span class="btn-count js-tweet-count">&hellip;</span>
                    </li>
                </ul>
            </nav>
        </header>

        <main role="main" id="main">
            <nav class="btn-bar nav-panel">
                <ul>
                    <li><a href="#video" class="btn active btn-small">Video</a></li>
                    <li><a href="#youtube" class="btn btn-small">YouTube</a></li>
                    <li><a href="#audio" class="btn btn-small">Audio</a></li>
                </ul>
            </nav>
            <div class="panels">
                <section class="panel example-video active" id="video">
                    <div class="player">
                        <video poster="https://cdn.plyr.io/static/poster.jpg" controls crossorigin>
                            <!-- Video files -->
                            <source src="https://cdn.selz.com/plyr/1.0/movie.mp4" type="video/mp4">
                            <source src="https://cdn.selz.com/plyr/1.0/movie.webm" type="video/webm">
                            
                            <!-- Text track file -->
                            <track kind="captions" label="English" srclang="en" src="https://cdn.selz.com/plyr/1.0/en.vtt" default>
                            
                            <!-- Fallback for browsers that don't support the <video> element -->
                            <a href="https://cdn.selz.com/plyr/1.0/movie.mp4">Download</a>
                        </video>
                    </div>
                    <small>Big Buck Bunny. More info can be found at <a href="https://peach.blender.org" target="_blank">peach.blender.org</a>.</small>
                </section>
                <section class="panel example-video" id="youtube">
                    <div class="player">
                        <div data-video-id="Au87oAJ2jeE" data-type="youtube"></div>
                    </div>
                    <small>Envato's "Made By" interview of <a href="https://www.youtube.com/watch?v=Au87oAJ2jeE" target="_blank">Dan Cederholm</a> from <a href="https://dribbble.com" target="_blank">Dribbble</a>.</small>
                </section>
                <section class="panel example-audio" id="audio">
                    <div class="player">
                        <audio controls>
                            <!-- Audio files -->
                            <source src="//cdn.selz.com/plyr/1.0/logistics-96-sample.mp3" type="audio/mp3">
                            <source src="//cdn.selz.com/plyr/1.0/logistics-96-sample.ogg" type="audio/ogg">
                            
                            <!-- Fallback for browsers that don't support the <audio> element -->
                            <a href="//cdn.selz.com/plyr/1.0/logistics-96-sample.mp3">Download</a>
                        </audio>
                    </div>
                    <small>"96" by Logistics, which can be purchased from <a href="https://www.hospitalrecords.com/shop/artist/logistics" target="_blank">Hospital Records</a>.</small>
                </section>
            </div>
        </main>

        <!-- Load SVG defs -->
        <!-- You should bundle all SVG/Icons into one file using a build tool such as gulp and svg store -->
        <script>
        (function(d, u){
            var a = new XMLHttpRequest(),
                b = d.body;

            // Check for CORS support
            // If you're loading from same domain, you can remove the if statement
            if("withCredentials" in a) {
                a.open("GET", u, true);
                a.send();
                a.onload = function(){
                    var c = d.createElement("div");
                    c.setAttribute("hidden", "");
                    c.innerHTML = a.responseText;
                    b.insertBefore(c, b.childNodes[0]);
                }
            }
        })(document, "https://cdn.plyr.io/1.2.5/sprite.svg");
        </script>

        <!-- Plyr core script -->
        <script src="https://cdn.plyr.io/1.2.5/plyr.js?1"></script>

        <!-- Docs script -->
        <script src="https://cdn.plyr.io/1.2.5/docs.js?1"></script>
    </body>
</html>