mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 18:25:30 +00:00
27 lines
No EOL
717 B
HTML
Executable file
27 lines
No EOL
717 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({
|
|
initialTrack: {
|
|
name: "1. DJ Mike Llama - 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"
|
|
},
|
|
avaliableSkins: [
|
|
]
|
|
}).render(document.getElementById('winamp2-js'));
|
|
</script>
|
|
</body>
|
|
|
|
</html> |