mirror of
https://github.com/videojs/video.js.git
synced 2024-12-02 09:11:54 +02:00
51bd49f4bc
This adds a breakpoints option. By default, this option is false meaning this is an opt-in feature. When passing true, it will use a default set of breakpoints. Or custom breakpoints can be passed if users do not like our breakpoints (or previously-existing style decisions). - Add breakpoints option. - Adds some new (currently unused) classes: vjs-layout-medium, vjs-layout-large, vjs-layout-x-large, and vjs-layout-huge. - Add updateCurrentBreakpoint and currentBreakpoint methods to the player. - Update css/components/_adaptive.scss - Add sandbox/responsive.html.example Closes videojs/video.js#4371
43 lines
1.9 KiB
Plaintext
43 lines
1.9 KiB
Plaintext
<!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>
|
|
<script src="../node_modules/videojs-flash/dist/videojs-flash.js"></script>
|
|
|
|
<!-- Set the location of the flash SWF -->
|
|
<script>
|
|
videojs.options.flash.swf = '../node_modules/videojs-flash/node_modules/videojs-swf/dist/video-js.swf';
|
|
</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 make a copy of index.html.example and rename it to index.html.</p>
|
|
<pre>cp sandbox/flash.html.example sandbox/flash.html</pre>
|
|
<pre>npm run start</pre>
|
|
<pre>open http://localhost:9999/sandbox/flash.html</pre>
|
|
</div>
|
|
|
|
<video id="vid1" class="video-js" controls preload="auto" width="640" height="264"
|
|
poster="http://vjs.zencdn.net/v/oceans.png"
|
|
data-setup=''>
|
|
<source src="http://vjs.zencdn.net/v/oceans.mp4" type="video/mp4">
|
|
<source src="http://vjs.zencdn.net/v/oceans.webm" type="video/webm">
|
|
<source src="http://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="http://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a></p>
|
|
</video>
|
|
|
|
<script>
|
|
var vid = document.getElementById("vid1");
|
|
var player = videojs(vid, {techOrder: ['flash', 'html5']});
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|