iframe嵌入BiliBili视频方法B站视频外链
<iframe src="//player.bilibili.com/player.html?aid=60016166&cid=104514776&page=1&danmaku=0" allowfullscreen="allowfullscreen" width="100%" height="500" scrolling="no" frameborder="0" sandbox="allow-top-navigation allow-same-origin allow-forms allow-scripts"></iframe>
BILIBILI 地址PC端参数
&danmaku=0 (1=打开弹幕 0=关闭弹幕)
iframe 参数
allowfullscreen="allowfullscreen" #移动端全屏
sandbox="allow-top-navigation allow-same-origin allow-forms allow-scripts" #禁止弹出网页
属性 | 值 | 描述 |
---|---|---|
align | leftrighttopmiddlebottom | 不赞成使用。请使用样式代替。规定如何根据周围的元素来对齐此框架。 |
frameborder | 10 | 规定是否显示框架周围的边框。 |
height | pixels% | 规定 iframe 的高度。 |
longdesc | URL | 规定一个页面,该页面包含了有关 iframe 的较长描述。 |
marginheight | pixels | 定义 iframe 的顶部和底部的边距。 |
marginwidth | pixels | 定义 iframe 的左侧和右侧的边距。 |
name | frame_name | 规定 iframe 的名称。 |
sandbox | “”allow-formsallow-same-originallow-scriptsallow-top-navigation | 启用一系列对 iframe 中内容的额外限制。 |
scrolling | yesnoauto | 规定是否在 iframe 中显示滚动条。 |
seamless | seamless | 规定 iframe 看上去像是包含文档的一部分。 |
src | URL | 规定在 iframe 中显示的文档的 URL。 |
srcdoc | HTML_code | 规定在 iframe中显示的页面的 HTML 内容。 |
width | pixels% | 定义 iframe 的宽度。 |
API调用
普通BV视频地址例如:https://www.bilibili.com/video/BV1Xt411n7iJ
普通AV视频地址例如:https://www.bilibili.com/video/av60016166
普通多P视频地址例如:https://www.bilibili.com/video/BV1w4411179v/?p=2
可直接输入BV、AV、EP编号如下
视频号: av60016166 || BV1Xt411n7iJ
多P视频号: av66821481?p=2 || BV1w4411179v/?p=2
外链播放:https://xbeibeix.com/api/bilibili/biliplayer/?url=【这里输入BV号】
直接frame
给主题添加自定义样式
将以下代码添加到主题的自定义CSS里
/*视频挂载*/
.iframe_video {
position: relative;
width: 100%;
}
@media only screen and (max-width: 767px) {
.iframe_video {
height: 15em;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.iframe_video {
height: 20em;
}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.iframe_video {
height: 30em;
}
}
@media only screen and (min-width: 1200px) {
.iframe_video {
height: 40em;
}
}
.iframe_cross {
position: relative;
width: 100%;
height: 0;
padding-bottom: 75%
}
.iframe_cross iframe {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0
}
复制视频源代码
打开B站视频网页,找到如下嵌入代码然后复制<iframe src="//player.bilibili.com/player.html?aid=11932135&cid=19697229&page=1" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true"> </iframe>
修改代码
复制嵌入代码到文章需要放置的位置。然后在给iframe
这个标签添加class="iframe_video"
`
`
还可以使用移动端得播放器
就是将 //player.bilibili.com/player.html 替换成 //www.bilibili.com/blackboard/html5mobileplayer.html
参数:
是否自动播放(默认否):autoplay
默认弹幕开关(默认开启):danmaku
是否默认静音(默认否):muted
一键静音按钮是否显示(默认不显示):hasMuteButton
视频封面下方是都显示播放量弹幕量等信息(默认显示):hideCoverInfo
是否隐藏弹幕按钮(默认不隐藏):hideDanmakuButton
是否隐藏全屏按钮(默认显示):noFullScreenButton
是否开始记忆播放(默认开启):fjw
默认开始时间(单位秒,默认0):t
是否显示高清(默认否):highQuality(无用的,因为除了参数外它还判断了网址是否来自bilibili)
很有用,谢谢。完美设置,感谢分享教程。请看:http://www.jtsg.org/2016-07-01/3103.html
有用就好,你的支持是我最大的动力:真棒: