summaryrefslogtreecommitdiff
path: root/javascript/videojs/sandbox/focus-visible.html.example
diff options
context:
space:
mode:
Diffstat (limited to 'javascript/videojs/sandbox/focus-visible.html.example')
-rw-r--r--javascript/videojs/sandbox/focus-visible.html.example36
1 files changed, 36 insertions, 0 deletions
diff --git a/javascript/videojs/sandbox/focus-visible.html.example b/javascript/videojs/sandbox/focus-visible.html.example
new file mode 100644
index 0000000..a737959
--- /dev/null
+++ b/javascript/videojs/sandbox/focus-visible.html.example
@@ -0,0 +1,36 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="utf-8" />
+ <title>Video.js Sandbox</title>
+
+ <!-- Load the source files -->
+ <link href="../dist/video-js.css" rel="stylesheet" type="text/css">
+ <script src="../dist/video.js"></script>
+
+</head>
+<body>
+ <div style="background-color:#eee; border: 1px solid #777; padding: 10px; margin-bottom: 20px; font-size: .8em; line-height: 1.5em; font-family: Verdana, sans-serif;">
+ <p>You can use /sandbox/ for writing and testing your own code. Nothing in /sandbox/ will get checked into the repo, except files that end in .example (so don't edit or add those files). To get started run `npm start` and open the focus-visible.html</p>
+ <pre>npm start</pre>
+ <pre>open http://localhost:9999/sandbox/focus-visible.html</pre>
+ </div>
+
+ <video id="vid1" class="video-js vjs-default-skin" controls preload="auto" width="640" height="264"
+ poster="https://vjs.zencdn.net/v/oceans.png"
+ data-setup='{"controlBar": {"volumePanel": {"inline": false}}}'>
+ <source src="https://vjs.zencdn.net/v/oceans.mp4" type="video/mp4">
+ <source src="https://vjs.zencdn.net/v/oceans.webm" type="video/webm">
+ <source src="https://vjs.zencdn.net/v/oceans.ogv" type="video/ogg">
+ <track kind="captions" src="../docs/examples/shared/example-captions.vtt" srclang="en" label="English">
+ <p class="vjs-no-js">To view this video please enable JavaScript, and consider upgrading to a web browser that <a href="https://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a></p>
+ </video>
+ <p>This demo shows how to implement polyfill for the <b>:focus-visible</b> selector. You can read more about the polyfill <a href="https://github.com/WICG/focus-visible"> here</a>.</p>
+ <script>
+ var vid = document.getElementById("vid1");
+ var player = videojs(vid);
+
+ </script>
+ <script src="https://unpkg.com/focus-visible"></script>
+</body>
+</html>