以下文章只是教程
如果遇到使用問題,请仔细查看插件文档,或者到插件那裏反饋

前言

如果你想使用aplayer,很多人都會推薦安裝hexo-tag-aplayer這款插件。這款插件通過Hexo獨有的標籤外掛,我們可以很方便的寫入一些參數,插件就會幫我們生成對應的html。如果你只是使用一些簡單的功能,其實無需使用到這個插件,只需以html格式書寫就行,不用插件去轉換。

例如:

如果使用插件,在markdown中要這樣寫

1
{% meting "000PeZCQ1i4XVs" "tencent" "artist" "theme:#3F51B5" "mutex:true" "preload:auto" %}

其會被插件渲染為

1
<div id="aplayer-uxAIfEUs" class="aplayer aplayer-tag-marker meting-tag-marker" data-id="000PeZCQ1i4XVs" data-server="tencent" data-type="artist" data-mode="circulation" data-autoplay="false" data-mutex="true" data-listmaxheight="340px" data-preload="auto" data-theme="#3F51B5"></div>

如果我們不想使用插件,就需要在markdown中用html的格式書寫,同時把主題配置文件中的aplayerInject開啟

1
<div class="aplayer" data-id="000PeZCQ1i4XVs" data-server="tencent" data-type="artist" data-mutex="true" data-preload="auto" data-theme="#3F51B5"></div>

這樣我們就可以不用使用多一個插件,當然這種東西見仁見智,選自己喜歡的就行。

回到正題,這篇文章將教大家如何在Butterfly上使用全局吸底Aplayer

aplayer

關閉 asset_inject

此步驟適用於安裝了hexo-tag-aplayer插件的人

由於需要全局都插入aplayer和meting資源,為了防止插入重複的資源,需要把asset_inject設為false

在Hexo的配置文件中

1
2
3
aplayer:
meting: true
asset_inject: false

開啟主題的aplayerInject

在主題的配置文件中,enable設為trueper_page設為true

1
2
3
4
# Inject the css and script (aplayer/meting)
aplayerInject:
enable: true
per_page: true

插入Aplayer html

為了適配hexo-tag-aplayer,主題內置的Meting js 仍為1.2版本,並非最新的2.x版本。

Aplayer html 例子:

1
<div class="aplayer no-destroy" data-id="000PeZCQ1i4XVs" data-server="tencent" data-type="artist" data-fixed="true" data-mini="true" data-listFolded="false" data-order="random" data-preload="none" data-autoplay="true" muted></div>

參數解釋

optiondefaultdescription
data-idrequiresong id / playlist id / album id / search keyword
data-serverrequiremusic platform: netease, tencent, kugou, xiami, baidu
data-typerequiresong, playlist, album, search, artist
data-fixedfalseenable fixed mode
data-minifalseenable mini mode
data-autoplayfalseaudio autoplay
data-theme#2980b9main color
data-loopallplayer loop play, values: ‘all’, ‘one’, ‘none’
data-orderlistplayer play order, values: ‘list’, ‘random’
data-preloadautovalues: ‘none’, ‘metadata’, ‘auto’
data-volume0.7default volume, notice that player will remember user setting, default volume will not work after user set volume themselves
data-mutextrueprevent to play multiple player at the same time, pause other players when this player start play
data-lrctype0lyric type
data-listfoldedfalseindicate whether list should folded at first
data-listmaxheight340pxlist max height
data-storagenamemetingjslocalStorage key that store player setting

require代表着這些參數是必須要使用的,其它的參數則可以根據自己需要配置。

配置全局吸底,data-fixeddata-mini也必須配置,配置為true

如果使用Pjax,則在class裏需添加no-destroy,這樣防止切換頁面時Aplayer被銷毀

aplayer代碼插入到主題配置文件的inject.bottom

1
2
3
4
inject:
head:
bottom:
- <div class="aplayer no-destroy" data-id="000PeZCQ1i4XVs" data-server="tencent" data-type="artist" data-fixed="true" data-mini="true" data-listFolded="false" data-order="random" data-preload="none" data-autoplay="true" muted></div>

運行Hexo就可以看到網頁左下角出現了Aplayer

最後,如果你想切換頁面時,音樂不會中斷。請把主題配置文件的pjax設為true

UI 調整

按照上面的步驟設置完成后,瀏覽器左下角會出現Aplayer。打開文章頁面時,你會發現打開Toc目錄的按鈕被遮擋了。我們需要修改CSS來改變按鈕的位置。
位置怎麽移動根據自己需求決定,這裏列出2種方法。

向上調整

1
2
3
#toggle-sidebar {
bottom: 80px
}

aplayer1

在主題配置文件中,添加到inject

1
2
3
inject:
head:
- '<style type="text/css">#toggle-sidebar {bottom: 80px}</style>'

向右調整

1
2
3
#toggle-sidebar {
left: 100px
}

butterfly-add-aplayer-left

在主題配置文件中,添加到inject

1
2
3
inject:
head:
- '<style type="text/css">#toggle-sidebar {left:100px}</style>'

轉載來自 https://butterfly.js.org/