最新消息:阿里云双12优惠,史上最低折扣。

怎么在wordpress插入自适应屏幕的在线视频?

云服务器 aliyun 282浏览

WordPress如何安装缓存插件WP Super Cache

首先,在wordpress插件里面搜索“WPSuperCache”,安装并启用。接着,选择“设置”-“WPSuperCache”,进行设置设置如下:1、通用设置2、高级设置3、预缓存设置到这里基本就可以了,其他的功能可以根据情况去选择和设置。

首先,在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; } }

比如在wordpress,最简单的方法就是直接点击“自定义”-“额外CSS”里面添加即可。如下图所示:

接着,在发布文章的时候,添加“自定义HTML”,并输入如下代码:

<div class=”smartideo”> <div class=”player”> <iframe src=”//player.bilibili.com/player.html?AId=459688031&bvid=BV1h5411P7Td&cid=313046710&page=1&high_quality=1&danmaku=0″ width=”100%” height=”100%” frameborder=”no” scrolling=”no” allowfullscreen=”allowfullscreen”> </iframe> </div> </div>

如下图所示

接着就可以发布文章去看下效果了。

转载请注明:小猪云服务器租用推荐 » 怎么在wordpress插入自适应屏幕的在线视频?