我正在使用owl carousal来显示youtube视频,当使用时点击视频,它会在nivo灯箱中显示视频$('a').nivoLightbox();
哪一切都运行良好,但我面临的问题是,当我关闭弹出窗口时,这个特定的carousal会根据页面任何部分的鼠标位置左右移动项目。
我不确定如何使用猫头鹰解开鼠标,我尝试了一些不起作用的东西,例如$("owl-carousel").trigger('refresh.owl.carousel');
我可以采取任何其他措施来阻止左右滚动项目
$("#content-slide-videos").owlCarousel({
//autoPlay: 5000, Set AutoPlay to 5 seconds
items: 3,
itemsDesktop: [1199, 3],
itemsDesktopSmall: [980, 3],
itemsTablet: [768, 2],
itemsTabletSmall: false,
itemsMobile: [479, 1],
pagination: false,
dots: false,
//video:true,
// autoplayHoverPause: false,
lazyLoad: true,
navigation: true,
navigationText: [
"<i class='fa pe-7s-angle-left'></i>",
"<i class='fa pe-7s-angle-right'></i>"
],
afterInit: function (elem) {
var that = this;
that.owlControls.prependTo(elem);
}
});
通过使用https://s3-us-west-2.amazonaws.com/s.cdpn.io/669264/owl.carousel.js
中的js文件解决了这个问题在比较两个文件之后,两个文件都是v1.3.3时,不确定是什么问题可能不同,另一个文件中没有'use strict';
行。{/ p>