nancypannikkat/js/general.js

16 lines
381 B
JavaScript
Raw Normal View History

2023-01-04 22:45:24 -08:00
document.addEventListener( 'DOMContentLoaded', function() {
var splide = new Splide( '.splide', {
type : 'loop',
perPage: 3,
focus : 'center',
autoWidth: true,
autoplay: true,
2023-01-06 22:52:26 -08:00
mediaQuery: 'max',
breakpoints: {
950: {
destroy: true,
},
},
2023-01-04 22:45:24 -08:00
} );
splide.mount();
});