0%

Hexo页面添加背景音乐

编辑 themes/next/layout/_macro/sidebar.swig 文件
1
2
3
4
5
<div id="music_player">
{% if theme.background_music %}
<iframe width="560" height="315" src="{{theme.background_music}}" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
{% endif %}
</div>
### 在 themes/next/_config.yml 配置文件中添加歌单地址配置
1
2
# background music
background_music: https://www.youtube.com/embed/_KesJL5EVjg

也可以直接将"iframe"文本整个粘贴到sidebar.swig 文件中

1
2
3
<div id="music_player">
<iframe width="560" height="315" src="https://www.youtube.com/embed/_KesJL5EVjg" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>