15 lines
233 B
JavaScript
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();
|
|
});
|