有没有办法允许用户从扬声器播放列表中删除项目?我不想写一个管理播放列表的单独页面。
答案 0 :(得分:0)
我刚看了一下这些文档。您可以使用播放列表将数组传递给file参数。
<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>