mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 18:25:30 +00:00
28 lines
765 B
HTML
Executable file
28 lines
765 B
HTML
Executable file
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id='winamp2-js'></div>
|
|
<script src="./built/winamp.bundle.js"></script>
|
|
<script>
|
|
const Winamp = window.winamp2js;
|
|
new Winamp({
|
|
initialTracks: [{
|
|
metaData: {
|
|
artits: "DJ Mike Llama",
|
|
title: "Llama Whippin' Intro"
|
|
},
|
|
url: "https://d38dnrh1liu4f5.cloudfront.net/projects/winamp2-js/mp3/llama-2.91.mp3"
|
|
}],
|
|
initialSkin: {
|
|
url: "https://d38dnrh1liu4f5.cloudfront.net/projects/winamp2-js/skins/base-2.91.wsz"
|
|
},
|
|
}).renderWhenReady(document.getElementById('winamp2-js'));
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|