Files
Web-NibblePoker/resources/NibblePoker/js/nibblepoker-splide.js
2023-12-20 00:24:52 +01:00

20 lines
331 B
JavaScript

// Creating the galleries with SplideJs
window.addEventListener('load', function() {
try {
new Splide( '.splide', {
perPage: 2,
cover: true,
heightRatio: 0.4,
breakpoints: {
768: {
perPage: 1,
},
},
}).mount();
} catch(err) {
console.log("Unable to setup Splide !");
console.log(err);
}
});