- 使用GIT BASH在根目录安装下列插件:
-
npm install hexo-tag-dplayer
npm install hexo-tag-aplayer
- 打开[网易云音乐](http://music.163.com/)
- 搜索你喜欢的音乐,点开歌名,然后点击“生成外链播放器”
- 选择iframe插件,复制代码
- 在负责需要放置该播放器的代码文件的最后粘贴该代码:
如:我在左边的菜单底部放置,那么我选择了
\themes\sw\layout\_partial 中的left-col.ejs 文件,粘贴了以下代码:
1
2
3
4
5<div style="position:absolute; bottom:0px; left:0px; width:76%">
<iframe frameborder="no" border="0" marginwidth="0" marginheight="0" width=300 height=80 src="//music.163.com/outchain/player?type=2&id=504797899&auto=1&height=66"></iframe>
</div>注意,div中的style,bottom为距离底部的高度,left为距离左边的宽度,中间的代码块是复制的网易给的代码,而里面的width和height可以自己调节。