You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.3 KiB
40 lines
1.3 KiB
<html>
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="/player/asciinema-player.css" />
|
|
<script>
|
|
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 div = document.createElement('asciinema-player');
|
|
document.body.appendChild(div); //appending the element
|
|
|
|
var att = document.createAttribute( "src" );
|
|
att.value = src ;
|
|
div.setAttributeNode(att);
|
|
|
|
var speed = document.createAttribute( "speed" );
|
|
speed.value = 2 ;
|
|
div.setAttributeNode(speed);
|
|
|
|
var author = document.createAttribute( "author" );
|
|
author.value = 'swarmlab.io' ;
|
|
div.setAttributeNode(author);
|
|
|
|
var authorurl = document.createAttribute( "author-url" );
|
|
authorurl.value = 'http://www.swarmlab.io' ;
|
|
div.setAttributeNode(authorurl);
|
|
|
|
var theme = document.createAttribute( "theme" );
|
|
theme.value = 'monokai' ;
|
|
div.setAttributeNode(theme);
|
|
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<asciinema-player title="Linux" author="swarmlab.io" author-url="http://www.swarmlab.io" font-size="small" speed="2" theme="monokai" src="/player/hybrid-linux/demo.cast"></asciinema-player>
|
|
<script src="/player/asciinema-player.js"></script>
|
|
</body>
|
|
</html>
|
|
|