zeus
4 years ago
1 changed files with 24 additions and 24 deletions
@ -1,29 +1,29 @@ |
|||
<html> |
|||
<head> |
|||
<link rel="stylesheet" type="text/css" href="/player/asciinema-player.css" /> |
|||
</head> |
|||
<head> |
|||
<link rel="stylesheet" type="text/css" href="/player/asciinema-player.css" /> |
|||
</head> |
|||
<body onLoad="GetVideo()"> |
|||
<script src="/player/asciinema-player.js"></script> |
|||
<script> |
|||
let render = (relEl, tpl, parse = true) => { |
|||
if (!relEl) return; |
|||
const range = document.createRange(); |
|||
range.selectNode(relEl); |
|||
const child = range.createContextualFragment(tpl); |
|||
return parse ? relEl.appendChild(child) : {relEl, el}; |
|||
}; |
|||
function GetVideo() { |
|||
var url_string = window.location.href |
|||
var url = new URL(url_string); |
|||
var item = url.searchParams.get("item"); |
|||
var llo = url.searchParams.get("llo"); |
|||
var src = '/player/'+llo+'/'+item+'.cast' |
|||
render(document.body, ` |
|||
<asciinema-player title="Linux" author="swarmlab.io" author-url="http://www.swarmlab.io" font-size="small" speed="2" theme="monokai" src=${src}></asciinema-player> |
|||
`); |
|||
} |
|||
|
|||
<asciinema-player id="p1" title="Linux" author="swarmlab.io" author-url="http://www.swarmlab.io" font-size="small" speed="2" theme="monokai"></asciinema-player> |
|||
<script src="/player/asciinema-player.js"></script> |
|||
<script> |
|||
function GetVideo() { |
|||
//document.querySelector("#p1").setAttribute("src", src); |
|||
document.getElementById('p1').addEventListener('loadeddata', function(e) { |
|||
var url_string = window.location.href |
|||
var url = new URL(url_string); |
|||
var item = url.searchParams.get("item"); |
|||
var llo = url.searchParams.get("llo"); |
|||
var src = '/player/'+llo+'/'+item+'.cast' |
|||
|
|||
var video = document.getElementById('p1'); |
|||
video.setAttribute('src', src); |
|||
document.getElementById('p1').play() |
|||
console.log("all ready to play"); |
|||
}) |
|||
} |
|||
|
|||
|
|||
</script> |
|||
</body> |
|||
</script> |
|||
</body> |
|||
</html> |
|||
|
Loading…
Reference in new issue