WordPress
准备工作
安装一下Raw HTML插件,用来解析页面中的html
相关代码
1 2 3 4 5 6
| <div style="position: relative; padding: 40% 45%;"> <iframe src="" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" style="position: absolute; width: 100%; height: 100%; left: 0; top: 0;"> </iframe></div>
|
Typecho
typecho中之前使用的主题BearSimple可以直接插入b站视频
Hexo
Hexo中提供了raw标签来插入iframe
1 2 3 4 5 6 7 8 9
| {%raw%} <div style="position: relative; padding: 40% 45%;"> <iframe src="//player.bilibili.com/player.html?aid=800734105&bvid=BV1xy4y1i7ts&cid=268994117&page=1" scrolling="no" border="0" frameborder="no"
framespacing="0" allowfullscreen="true" style="position: absolute; width: 100%; height: 100%; left: 0; top: 0;"> </iframe></div> {%endraw%}
|