Created
June 12, 2022 16:22
-
-
Save sarvar/f1dfb3f70f0f43adab8c1da04a222368 to your computer and use it in GitHub Desktop.
Revisions
-
sarvar created this gist
Jun 12, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,39 @@ /* And a bit of CSS to show disabled Owl element: .owl-carousel.off { display: block; } */ $(function() { var owl = $('.owl-carousel'), owlOptions = { loop: false, margin: 30, smartSpeed: 700, nav: false, items: 1 }; if ( $(window).width() < 768 ) { var owlActive = owl.owlCarousel(owlOptions); } else { owl.addClass('off'); } $(window).resize(function() { if ( $(window).width() < 768 ) { if ( $('.owl-carousel').hasClass('off') ) { var owlActive = owl.owlCarousel(owlOptions); owl.removeClass('off'); } } else { if ( !$('.owl-carousel').hasClass('off') ) { owl.addClass('off').trigger('destroy.owl.carousel'); owl.find('.owl-stage-outer').children(':eq(0)').unwrap(); } } }); });