Files
Web-NibblePoker/resources/NibblePoker/js/nibblepoker-splide.js
Herwin 0f63ab3371 Replaced GliderJs with SplideJS
Update .gitmodules, head.php, and 10 more files...
2023-12-15 15:27:45 +01:00

15 lines
233 B
JavaScript

// Creating the galleries with SplideJs
window.addEventListener('load', function() {
new Splide( '.splide', {
perPage: 2,
cover: true,
heightRatio: 0.4,
breakpoints: {
768: {
perPage: 1,
},
},
} ).mount();
});