74 lines
1.7 KiB
HTML
74 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" dir="ltr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Play a line animation</title>
|
|
<style media="screen">
|
|
#sample, svg{
|
|
position:absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right:0;
|
|
width:100%;
|
|
height:100%;
|
|
font-family: sans-serif;
|
|
z-index:2;
|
|
cursor: url('/cursor.png') 6 6, auto;
|
|
}
|
|
img{
|
|
position:absolute;
|
|
top:0;
|
|
bottom:0;
|
|
right:0;
|
|
left:0;
|
|
width:100%;
|
|
height:100%;
|
|
z-index:1;
|
|
}
|
|
|
|
path {
|
|
fill: none;
|
|
stroke: gray;
|
|
stroke-width: 1mm;
|
|
stroke-linecap: round;
|
|
}
|
|
|
|
#wrapper {
|
|
position:absolute;
|
|
top:0;
|
|
right:0;
|
|
bottom:0;
|
|
left:0;
|
|
background:none;
|
|
}
|
|
.gray{
|
|
position:absolute;
|
|
background:rgba(255,255,255,0.7);
|
|
}
|
|
html, body{
|
|
height: 100%;
|
|
width: 100%;
|
|
margin:0;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
.playlist{
|
|
position: absolute;
|
|
left:0;
|
|
top:0;
|
|
z-index: 50;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id='interface'>
|
|
</div>
|
|
<script src="play.js"></script>
|
|
<script type='text/javascript'>
|
|
const player = new Player( document.getElementById("interface"));
|
|
player.playlist('/files/');
|
|
// player.play('/files/2021-11-22-3-75b0f0');
|
|
</script>
|
|
</body>
|
|
</html>
|