首页 网易云外链插入Jekyll博客教程和注意事项
文章
取消

网易云外链插入Jekyll博客教程和注意事项

网易云外链插入Jekyll博客教程和注意事项

这里是教程:

首先找到网易云的外链生成,这里不多说了。生成了的外链大概长这样

1
2
<iframe frameborder="no" border="0" marginwidth="0" marginheight="0" width=330 height=86
        src="//music.163.com/outchain/player?type=2&id=28723836&auto=1&height=66"></iframe>

这里有几个雷区:

1:需要修改width=330 height=86width="330" height="86"

2:链接前面不要加http也不要加https,会自动解析。

3:最后面一个<\iframe>要和前面的>中间隔一个空格。

4:海外用户由于版权原因无法播放外链音频,表现形式为点不动。只能看见播放器。

修改后的链接大概长这样

1
2
<iframe frameborder="no" border="0" marginwidth="0" marginheight="0" width="330" height="86"
        src="//music.163.com/outchain/player?type=2&id=28723836&auto=1&height=66"> </iframe>
本文由作者按照 CC BY 4.0 进行授权