initial commit

This commit is contained in:
Tilman Kranz
2024-09-21 16:05:22 +02:00
commit 5f95d9cef6
55 changed files with 12483 additions and 0 deletions

34
demo/element.html Normal file
View File

@ -0,0 +1,34 @@
<html>
<head>
<base href="." />
<title>MyPlayer Element Demo</title>
<script type="text/javascript" src="../js/jquery.js"></script>
<script type="text/javascript" src="../js/myplayer.min.js"></script>
<link rel="stylesheet" href="../css/myplayer.css" />
<script type="text/javascript">$(function(){MyPlayer({
element: '#myplayer',
mode: 'm3u',
m3u: './snd/play.m3u'
})});</script>
<style type="text/css">
h1, p { color: white; }
</style>
</head>
<body>
<noscript>
Javascript is required to use the MP3 player.
Please choose of the alternatives listed below.
</noscript>
<h1>I Am A Heading</h1>
<p>I am a paragraph. The player UI will follow below.</p>
<div id="myplayer"></div>
</body>
</html>