给网站增加音乐播放器

如何给网站增加音乐播放器呢?我们进入网易云音乐的官网:https://music.163.com/

登录后,进入我的主页选择歌曲或者在歌单中选择歌曲。

在歌曲详情页点击生成外链播放器。但是,有一些歌曲由于版权保护,无法生成外链。

 我们需要选择没有版权保护的歌曲,生成外链。然后复制生成的HTML代码到页面中。

该代码是使用<iframe>元素引入窗口,我们需要在src的值前面加上https:

则代码为:

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

即可成功实现效果。

原文地址:https://www.cnblogs.com/luoyihao/p/12758902.html