Hexo NexT 插件 - APlayer

ToolBox002

预览

教程

准备音乐、曲绘直链

一个能生成主流音乐平台直链的网站

安装APlayer

在站点根目录下打开 Git 命令行 npm install hexo-tag-aplayer --save

插入代码

下面是预览的代码,参数请参考 官方文档

请注意 json 语法
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 %}
{
"mini": false,
"theme": "#8b4513",
"autoplay": false,
"mutex": true,
"music": [
{
"title": "Dream goes on",
"author": "Tiny Minim",
"url": "https://666dhg.github.io/data/Playlist/DGO.mp3",
"pic": "https://666dhg.github.io/data/Playlist/DGO.jpg"
},
{
"title": "Frey's Philosophy",
"author": "Powerless",
"url": "https://666dhg.github.io/data/Playlist/FP.mp3",
"pic": "https://666dhg.github.io/data/Playlist/FP.jpg"
},
{
"title": "Cyanine",
"author": "jioyi",
"url": "https://666dhg.github.io/data/Playlist/Cyanine.mp3",
"pic": "https://666dhg.github.io/data/Playlist/Cyanine.jpg"
}
]
}
{% endaplayerlist %}