myplayer/demo/filematch.html

25 lines
625 B
HTML
Raw Normal View History

2024-09-21 16:05:22 +02:00
<html>
<head>
<base href="." />
<title>MyPlayer filematch 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',
filematch: /(^|\/)[0-9][^\/]*\.mp3/i
})});</script>
</head>
<body>
<noscript>
Javascript is required to use the MP3 player.
Please choose of the alternatives listed below.
</noscript>
</body>
</html>