我已经在我的网站上嵌入了YouTube视频中的youtube视频。但是,当用户点击视频时,它将在弹出窗口中显示。不能那样做。我试过弹出插件。
答案 0 :(得分:0)
您可以使用以下wordpress插件在灯箱弹出窗口中播放视频。 https://wordpress.org/plugins/wp-video-lightbox/
在这里,您可以看到要在主题中安装的简单安装步骤。 https://wordpress.org/plugins/wp-video-lightbox/#installation
答案 1 :(得分:0)
有很多Lightbox插件服务于同一个商家其中一个易于使用的是Fancybox插件。
这个插件有各种形式,包括wordpress插件。
https://wordpress.org/plugins/easy-fancybox/
尝试使用此功能并确保正确配置。
**********更新了部分**********
这是实现它的方法之一。 以下是所需的代码行:
1。)添加事件触发按钮:
<a href="https://www.youtube.com/embed/your_video_id?modestbranding=1&rel=0&showinfo=0" class="video_btn pull-right fancybox iframe"><i class="fa fa-video-camera"></i> Watch Video</a>
2.)配置fancybox
$('.fancybox').fancybox({
autoSize: false,
autoDimensions: false,
width: 630,
height: 425,
fitToView: false,
padding: 0,
title: this.title,
href: $(this).attr('href'),
type: 'iframe'
});