sakrecoer-mother-web/_layouts/music.html

70 lines
2.4 KiB
HTML
Raw Normal View History

2019-04-28 18:56:03 +02:00
---
layout: default
---
<div id="navigation">
2019-04-28 19:33:43 +02:00
<button id="mu_pause">Play</button>
<h1>{% if page.previous_in_category != nil %}
2019-04-28 19:33:43 +02:00
<a href="{{ site.baseurl }}{{ page.previous_in_category.url }}" title="Previous Track"><img
src="{{ site.baseurl }}/assets/img/icons/skiprwd.png" title="Previous Track" /></a>
2019-04-28 18:56:03 +02:00
{% endif %}
<a id="download" title="Download This Track!" href="{{ site.audio_url }}{{ page.mp3 }}"><img
2019-04-28 19:33:43 +02:00
src="{{ site.baseurl }}/assets/img/icons/dl.png" title="Download Track" /></a>
2019-04-28 18:56:03 +02:00
{% if page.next_in_category != nil %}
2019-04-28 19:33:43 +02:00
<a href="{{ site.baseurl }}{{ page.next_in_category.url }}" title="Next Track"><img
src="{{ site.baseurl }}/assets/img/icons/skipfwd.png" title="Next Track" /></a>{% endif %}
</h1>
2019-04-28 21:15:51 +02:00
<a href="{{ site.baseurl }}/music/">Back to Index</a>
2019-04-28 18:56:03 +02:00
</div>
<div id="lyrics">
2019-04-28 18:56:03 +02:00
<h1 class="title">{{ page.title }}</h1>
{{ page.content }}
</div>
2019-04-28 19:26:34 +02:00
<audio preload="true"
ontimeupdate="document.getElementById('tracktime').innerHTML = Math.floor(this.currentTime) + ' / ' + Math.floor(this.duration);">
<source src="{{ site.audio_url }}{{ page.mp3 }}" type="audio/mpeg" />
<source src="{{ site.audio_url }}{{ page.ogg }}" type="audio/ogg" />
<h1>Your browser isn't ready for so much hotness. Use the download-link instead.</h1>.
</audio>
2019-04-28 18:56:03 +02:00
<div id="tracktime"></div>
<!-- stylemachine by Sakrecoer -snipthis if ya feel it - its the pary that runs the player ;) -->
<script type="text/javascript">
2019-04-28 18:56:03 +02:00
function loadUrl(newLocation) {
window.location = newLocation;
return false;
}
var mu = document.getElementsByTagName("audio")[0];
var pauseButton = document.getElementById("mu_pause");
function muFade() {
mu.classList.add("stopfade");
}
mu.addEventListener('ended', function () {
// only functional if "loop" is removed
mu.pause();
mu.currentTime = 0;
{% if page.next_in_category != nil %}
2019-04-28 19:33:43 +02:00
loadUrl('{{ site.baseurl }}{{ page.next_in_category.url }}'); return false;
{% endif %}
2019-04-28 18:56:03 +02:00
// qq IE10
muFade();
});
pauseButton.addEventListener("click", function () {
mu.classList.toggle("stopfade");
if (mu.paused) {
mu.play();
2019-04-28 19:33:43 +02:00
pauseButton.innerHTML = "Pause";
2019-04-28 18:56:03 +02:00
} else {
mu.pause();
2019-04-28 19:33:43 +02:00
pauseButton.innerHTML = "Resume";
2019-04-28 18:56:03 +02:00
}
});
</script>
<style type="text/css">
2019-04-28 18:56:03 +02:00
html,
body {
2019-04-30 17:43:17 +02:00
background:url('{{ site.audio_url }}{{ page.image }}') #0ff no-repeat center center fixed;
2019-04-28 18:56:03 +02:00
background-size: contain;
}
</style>