51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

Hexo 添加 aplayer 音乐播放器

引言 {#引言}

hexo-tag-aplayer 是Aplayer在hexo上的插件,这里的配置参考的是官方文档

安装 hexo-tag-aplayer {#安装-hexo-tag-aplayer}

|-----------|---------------------------------------------| | 1 | npm install --save hexo-tag-aplayer |

增加音乐页面 {#增加音乐页面}

|-----------|------------------------------------| | 1 | hexo new page music "音乐分享" |

修改站点配置 {#修改站点配置}

最新版的 hexo-tag-aplayer 已经支持了MetingJS的使用,可以直接解析网络平台的歌曲(简直是神器),首先要在站点配置文件_config.yml中开启meting模式,添加以下代码在配置文件的最后:

|-------------|-------------------------------| | 1 2 | aplayer: meting: true |

设置歌单 {#设置歌单}

复制歌单的链接,然后复制歌单的id,例如 https://music.163.com/playlist?id=523845661&userid=46562117 ,这个歌单的id就是523845661,公司名可以是tencent、netease或是其他公司。

例子,打开 /Hexo/source/music/index.md文件,输入:

|-----------|---------------------------------------------------------------------------------------------------------------------------------------------| | 1 | {% meting "2209538297" "netease" "playlist" "theme:#FF4081" "mode:circulation" "mutex:true" "listmaxheight:340px" "preload:auto" %} |

访问地址 {#访问地址}

APlayer
hexo-tag-aplayer


赞(4)
未经允许不得转载:工具盒子 » Hexo 添加 aplayer 音乐播放器