RetroDECK/docs/assets/js/Simple-Slider.js
gabeeeboii 5edb3a1a6f QOL Update 3
*Be Advised - 31 changes due to Cooker's version of the website being behind multiple updates*

-Redesigned screenshots section
-Backend cleanup
2022-10-09 18:32:52 -06:00

19 lines
514 B
JavaScript

document.addEventListener("DOMContentLoaded", function() {
// Initializing the swiper plugin for the slider.
// Read more here: http://idangero.us/swiper/api/
var mySwiper = new Swiper('.swiper-container', {
loop: true,
pagination: {
el: '.swiper-pagination' ,
clickable: true
},
paginationClickable: true,
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev'
}
});
});