24 lines
852 B
HTML
24 lines
852 B
HTML
<html lang="de">
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
|
<meta charset="utf-8" />
|
|
<title>WIAInachtsspecial #4</title>
|
|
</head>
|
|
<body>
|
|
<div class="header">
|
|
<h1 class="title">Have Yourself a Merry Little Christmas</h1>
|
|
<p class="artists">Gesungen von Rhea, Klavierbegleitung von Johannes<br/>Original von Michael Bublé</p>
|
|
</div>
|
|
<div id="chart-container" style="width: 100%; height: 100%;"></div>
|
|
<script type="text/javascript" src="echarts.js"></script>
|
|
<script type="text/javascript" src="circular-audio-wave.js"></script>
|
|
<script>
|
|
window.addEventListener('load', function() {
|
|
let wave = new CircularAudioWave(document.getElementById('chart-container'));
|
|
wave.loadAudio('song.mp3');
|
|
wave.play();
|
|
})
|
|
</script>
|
|
</body>
|
|
|
|
</html> |