我想根据视口的宽度在轮播视图和不同的布局之间切换。设置旋转木马工作正常。当我想删除它时遇到问题。
我使用$owlTeam.destroy();
根据文档应该在初始化轮播之前重新创建标记的状态,但由于某种原因删除了两个意外和关键的div。一个是包装div,它是包含轮播的div的父级,另一个是轮播div本身。
这是我的标记:
<section id="some-id" class="team">
<div class="wrapper"> <!-- this gets removed on destroy -->
<header><!-- content --></header>
<div class="owlCarousel"> <!-- and this gets removed on destroy -->
<article class="big"><!-- content contains another .wrapper --></article>
<article class="big"><!-- content contains another .wrapper --></article>
<article class="small"><!-- content --></article>
<article class="small"><!-- content --></article>
<!-- and some more articles -->
</div>
</div>
</section>
这是我使用的JS:
var $owlTeam;
if( $window.width() < 680 ) {
$('.team .owlCarousel').owlCarousel({
autoPlay: false
, singleItem:true
, transitionStyle : "fade"
, pagination : true
});
$owlTeam = $('.team .owlCarousel').data('owlCarousel');
}
$window.resize(function() {
if( $window.width() < 680 ) {
$('.team .owlCarousel').owlCarousel({
autoPlay: false
, singleItem:true
, transitionStyle : "fade"
, pagination : true
});
$owlTeam = $('.team .owlCarousel').data('owlCarousel');
} else {
if( typeof $owlTeam != 'undefined' ) {
$owlTeam.destroy();
}
}
});
我尝试使用ID来直接选择应该包含轮播的div,但这并没有改变行为。我可以用JS重新插入缺失的标记,但这似乎更像是一个绑定而不是一个正确的解决方案。
导致此行为的原因是什么?如何解决?
jQuery版本:1.11.1 猫头鹰版本:1.3.2 我测试的浏览器:FF 35,Chrome 40
答案 0 :(得分:2)
这是一个报告的错误: https://github.com/smashingboxes/OwlCarousel2/issues/460
无论如何你可以试试这个来破坏猫头鹰旋转木马:
$('#your_carousel').trigger('destroy.owl.carousel').removeClass('owl-carousel owl-loaded');
$('#your_carousel').find('.owl-stage-outer').children().unwrap();