markdown 使Wordpress帖子中的视频嵌入响应。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 使Wordpress帖子中的视频嵌入响应。相关的知识,希望对你有一定的参考价值。

jQuery(document).ready(function () {
    jQuery(function () {
        jQuery('.mejs-overlay-loading').closest('.mejs-overlay').addClass('load'); //just a helper class

        var $video = jQuery('div.video video');
        var vidWidth = $video.attr('width');
        var vidHeight = $video.attr('height');

        jQuery(window).resize(function () {
            var targetWidth = jQuery(this).width(); //using window width here will proportion the video to be full screen; adjust as needed
            jQuery('div.video, div.video .mejs-container').css('height', Math.ceil(vidHeight * (targetWidth / vidWidth)));
        }).resize();
    });
});
.wp-video, video.wp-video-shortcode, .mejs-container, .mejs-overlay.load {
	width: 100% !important;
	height: 100% !important;
}
.mejs-container {
	padding-top: 56.25%;
}
.wp-video, video.wp-video-shortcode {
	max-width: 100% !important;
}
video.wp-video-shortcode {
	position: relative;
}
.mejs-mediaelement {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.mejs-controls {
	display: none;
}
.mejs-overlay-play {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: auto !important;
	height: auto !important;
}
Responsive Video Embeds
---------------------------------
WordPress Snippet

以上是关于markdown 使Wordpress帖子中的视频嵌入响应。的主要内容,如果未能解决你的问题,请参考以下文章

markdown WordPress中的自定义帖子类型和分类

markdown Wordpress Dashicons /自定义帖子类型图标/ CPT图标

markdown 资源:Wordpress Dashicons /自定义帖子类型图标/ CPT图标

在wordpress中用html替换markdown

Wordpress 5.2 YouTube 视频自动嵌入帖子不起作用

如何修复此 WordPress 功能使其不返回 404 页面?