Last active
June 25, 2024 20:42
-
-
Save Asikur22/f9f14fa5c844d9e5387206b559bcefaf to your computer and use it in GitHub Desktop.
Reinitialize swiper carousel
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 characters
window.addEventListener("load", function(event) { | |
var mainSliderDOM = document.querySelector('.swiper-container.slider-main'); | |
if(mainSliderDOM) { | |
var mainSlider = mainSliderDOM.swiper; | |
mainSlider.allowTouchMove = false; | |
mainSlider.update(); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment