mirror of
https://github.com/torappinfo/uweb.git
synced 2024-08-14 23:54:59 +00:00
rebuilding site Thu Oct 1 08:36:36 PM CST 2020
This commit is contained in:
parent
fecb1941e2
commit
130c7382e8
2 changed files with 28 additions and 10 deletions
17
searchurl/txt/videojs.html
Normal file
17
searchurl/txt/videojs.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/video.js/dist/video-js.min.css"/>
|
||||
<video
|
||||
id="player"
|
||||
class="video-js"
|
||||
preload="auto"
|
||||
controls >
|
||||
<source id="src" />
|
||||
</video>
|
||||
<script src="https://cdn.jsdelivr.net/npm/video.js/dist/video.min.js"></script>
|
||||
<script>
|
||||
const source = location.search.substring(3);
|
||||
document.getElementById("src").src = source;
|
||||
let setup = {
|
||||
playbackRates: [0.5, 1, 1.25, 1.5, 2, 4],
|
||||
};
|
||||
let player = videojs('player',setup);
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue