1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| {% aplayerlist %} { "narrow": false, // (可选)播放器袖珍风格 "autoplay": true, // (可选) 自动播放,移动端浏览器暂时不支持此功能 "mode": "random", // (可选)曲目循环类型,有 'random'(随机播放), 'single' (单曲播放), 'circulation' (循环播放), 'order' (列表播放), 默认:'circulation' "showlrc": 3, // (可选)歌词显示配置项,可选项有:1,2,3 "mutex": true, // (可选)该选项开启时,如果同页面有其他 aplayer 播放,该播放器会暂停 "theme": "#e6d0b2", // (可选)播放器风格色彩设置,默认:#b7daff "preload": "metadata", // (可选)音乐文件预载入模式,可选项: 'none' 'metadata' 'auto', 默认: 'auto' "listmaxheight": "513px", // (可选) 该播放列表的最大长度 "fixed": true // (可选) 左下角播放器 "music": [ { "title": "CoCo", "author": "Jeff Williams", "url": "caffeine.mp3", "pic": "caffeine.jpeg", "lrc": "caffeine.txt" }, { "title": "アイロニ", "author": "鹿乃", "url": "irony.mp3", "pic": "irony.jpg" } ] } {% endaplayerlist %}
|