WordPress文章内容中插入外链视频,如何自适应屏幕宽度?
wordpress 视频如何自适应屏幕宽度?在wordpress里面插入这样一段代码:
<video controls preload="auto" poster="视频封面地址" max width="100%" max height="100%" src="视频地址"></video>
WordPress文章中插入视频自适应页面大小代码
如果我们将一些网站的视频以iframe的形式直接贴在WordPress的博客或者网站当中的话,视频在页面的尺寸会非常的小,很不利于我们的观看。所以就想个办法将这个功能完善一下。
好了,不多说,直接上代码,记得将分享地址的代码简单修改一下。
<div class="smartideo"> <div class="player"><iframe src="//player.bilibili.com/player.html?aid=53452583&cid=93503857&page=1" width="100%" height="100%" frameborder="no" scrolling="no" allowfullscreen="allowfullscreen"> </iframe></div> </div>
这里是需要给div定义类名,方便在css当中给视频定义样式。
最重要的一部分来了,定义视频的样式。
.smartideo { z-index: 0; text-align: center; background: #CCC; line-height: 0; text-indent: 0; } .smartideo embed, .smartideo iframe { padding: 0; margin: 0; } .smartideo .player { width: 100%; height: 500px; overflow: hidden; position: relative; } .smartideo .player a.smartideo-play-link { display: block; width: 50px; height: 50px; text-decoration: none; border: 0; position: absolute; left: 50%; top: 50%; margin: -25px; } .smartideo .player a.smartideo-play-link p { display: none; } .smartideo .player .smartideo-play-button { width: 0; height: 0; border-top: 25px solid transparent; border-left: 50px solid #FFF; border-bottom: 25px solid transparent; } .smartideo .tips { background: #f2f2f2; text-align: center; max-height: 32px; line-height: 32px; font-size: 12px; } .smartideo .tips a { text-decoration: none; } @media screen and (max-width:959px){ .smartideo .player { height: 450px; } } @media screen and (max-width:767px){ .smartideo .player { height: 400px; } } @media screen and (max-width:639px){ .smartideo .player { height: 350px; } } @media screen and (max-width:479px){ .smartideo .player { height: 250px; } }