myplayer/demo/autoplay.html

28 lines
651 B
HTML

<!DOCTYPE html>
<html>
<head>
<base href="." />
<title>MyPlayer Autoplay/Loop 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({
mode: 'm3u',
m3u: './snd/play.m3u',
id3: true,
autoplay: true,
loop: false
})});</script>
</head>
<body>
<noscript>
Javascript is required to use the MP3 player.
Please choose of the alternatives listed below.
</noscript>
</body>
</html>