adds a stupid lil midi player to the layout
This commit is contained in:
parent
de04059367
commit
f3d046a922
19
_includes/mplayer.html
Normal file
19
_includes/mplayer.html
Normal file
@ -0,0 +1,19 @@
|
||||
<div id="player">
|
||||
<span id="player-text"></span>
|
||||
<a href="javascript:void(0)" onClick="stopPlayer()">stop</a>
|
||||
<a href="javascript:void(0)" onClick="MIDIjs.play('/assets/mid/canyon.mid')">play</a>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
var duration = 0;
|
||||
function updatePlayerStatus(msg) {
|
||||
document.getElementById("player-text").innerHTML = msg;
|
||||
}
|
||||
function stopPlayer() {
|
||||
MIDIjs.stop();
|
||||
document.getElementById("player-text").innerHTML = "";
|
||||
}
|
||||
|
||||
MIDIjs.message_callback = updatePlayerStatus;
|
||||
</script>
|
||||
|
@ -8,6 +8,7 @@ navbar: topnav
|
||||
<title>{{ page.title }}</title>
|
||||
<link rel="stylesheet" href="/assets/css/styles.css">
|
||||
<link rel="stylesheet" href="https://webcomicring.org/js/comicring.css">
|
||||
<script type='text/javascript' src='//midijs.net/lib/midi.js'></script>
|
||||
</head>
|
||||
<body>
|
||||
<img src="/assets/images/crt1.png" class="overlay">
|
||||
@ -17,6 +18,7 @@ navbar: topnav
|
||||
<script data-goatcounter="https://slimepondcount.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script>
|
||||
|
||||
{% include background.html %}
|
||||
{% include mplayer.html %}
|
||||
<div class="vcol">
|
||||
<div class="columns">
|
||||
<div class="left-sidebar">
|
||||
|
@ -75,3 +75,24 @@ img {
|
||||
background-color: white;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
#player {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
position: fixed;
|
||||
bottom: 15vh; left: 4vw;
|
||||
padding: 10px;
|
||||
gap: 10px;
|
||||
width: 25vw;
|
||||
background-color: black;
|
||||
color: white;
|
||||
|
||||
transform: rotate(3deg);
|
||||
z-index: 5;
|
||||
}
|
||||
|
||||
#player * {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user