1 固定长度
复制下面的代码,到你的Markdown中,就可以实现音乐播放的功能,音乐源引用自网易云音乐。
1 | <iframe frameborder="yes" border="100" marginwidth="4" marginheight="0" width=333 height=86 src="//music.163.com/outchain/player?type=2&id=1295824647&auto=1&height=66"></iframe> |
参数解释:
- auto 1:自动播放 0:不自动播放
- width 控制播放条的长度,默认是333px
- height 控制播放条的高度,默认是86px(px是像素的单位)
- src 歌曲的链接地址,可以在网页版的网易云平台搜索自己喜欢的歌曲查看,如下所示:
2 自适应长度
1 | <iframe frameborder="no" border="1" marginwidth="0" marginheight="0" width=100% height=86 src="//music.163.com/outchain/player?type=2&id=1295824647&auto=0&height=66"></iframe> |
写在最后
欢迎大家关注鄙人的公众号【麦田里的守望者zhg】,让我们一起成长,谢谢。
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.
Comment