88 lines
No EOL
1.2 KiB
HTML
88 lines
No EOL
1.2 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;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
.playlist li{
|
|
cursor: pointer;
|
|
line-height: 1.5;
|
|
}
|
|
.playlist li:hover{
|
|
color: blue;
|
|
}
|
|
</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/');
|
|
</script>
|
|
</body>
|
|
|
|
</html> |