webamp/examples/minimal/index.html
2018-09-24 16:44:59 -07:00

28 lines
743 B
HTML
Executable file

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
</head>
<body>
<div id='app'>
<!-- Webamp will attempt to center itself within this div -->
</div>
<script src="https://unpkg.com/webamp@1.2.0/built/webamp.bundle.min.js"></script>
<script>
const Webamp = window.Webamp;
new Webamp({
initialTracks: [{
metaData: {
artist: "DJ Mike Llama",
title: "Llama Whippin' Intro"
},
url: "https://cdn.rawgit.com/captbaritone/webamp/43434d82/mp3/llama-2.91.mp3",
duration: 5.322286
}],
}).renderWhenReady(document.getElementById('app'));
</script>
</body>
</html>