今天往博客的Archive里面添加了网易云的外链歌单。期末考试?鸽了。
Reference: Hexo博客添加背景音乐
歌单:
1 | The White Lady - Chirstopher Larkin |
后续:
看到PiCpo用的是APlayer,于是我也去弄了一个
配置
1 | npm install aplayer --save |
往网页的base-head.html
里面添加:
1 | <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/aplayer/dist/APlayer.min.css"> |
向博客的_config.yml
中加入:
1 | # APlayer Music Player |
然后再网页中想要插入歌单的部分添加:
1 | <meting-js server="netease" type="playlist" id="xxx"></meting-js> |
其中,id为该平台导出外链歌单的值。
meting-js更多的属性详见APlayer的官方文档:
Reference: