hexo添加音乐播放

安装hexo-tag-aplayer npm i hexo-tag-aplayer,在 source/music 目录中添加下载的歌曲,歌词,封面。这里给一个免费的音乐下载网站,在文章中写入如下内容即可:

1
{% aplayer title author url [picture_url, narrow, autoplay, width:xxx, lrc:xxx] %}

下面给出一个播放列表的示例。

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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44

{% aplayerlist %}
{
"narrow": false,
"autoplay": true,
"mode": "random",
"showlrc": 3,
"mutex": true,
"theme": "#e6d0b2",
"preload": "auto",
"listmaxheight": "513px",
"width": "50%",
"music": [
{
"title": "Something Just Like This",
"author": "Coldplay",
"url": "/music/SomethingJustLikeThis.mp3",
"pic": "/music/Coldplay.jpg",
"lrc": "/music/SomethingJustLikeThis-Coldplay.lrc"
},
{
"title": "Viva La Vida",
"author": "Coldplay",
"url": "/music/VivaLaVida.mp3",
"pic": "/music/Coldplay.jpg",
"lrc": "/music/VivaLaVida-Coldplay.lrc"
},
{
"title": "我记得",
"author": "赵雷",
"url": "/music/我记得.mp3",
"pic": "/music/我记得.jpg",
"lrc": "/music/我记得-赵雷.lrc"
},
{
"title": "晚婚",
"author": "江蕙",
"url": "/music/晚婚.mp3",
"pic": "/music/晚婚.jpg",
"lrc": "/music/晚婚-江蕙.lrc"
}
]
}
{% endaplayerlist %}
Author

Nevermore

Posted on

2023-11-16

Updated on

2024-02-21

Licensed under