有没有办法让用户从扬声器播放列表中删除项目?我不想写一个单独的页面来管理播放列表。
问问题
152 次
1 回答
0
我只是看了一下文档。您可以使用播放列表将数组传递给文件参数。
<script type="text/javascript">
$(document).ready(function() {
var pList = [
{
0: {
src: "http://uberelectron.s3.amazonaws.com/uberelectron1.mp4",
type: "video/mp4"
},
config: {
title: "Hello World.",
poster: "uebere.png"
}
},
{
0: {
src: "intro.mp4",
type: "video/mp4"
},
config: {
title: "Intro, MP4 only"
}
}
];
$().speakker({
file: pList,
playlist: true,
theme: 'light',
admin: 'http://www.speakker.com/opentape/code/login.php',
lastfm: 'http://www.lastfm.de/music/paniq'
});
});
</script>
于 2013-06-04T02:44:49.800 回答