Files
2026-02-07 08:23:18 +01:00

23 lines
449 B
JavaScript

/*
$(function() {
manageGallery();
});
function manageGallery(){
function mixitup() {
$("#faq").mixItUp({
animation: {
duration: 400,
effects: "fade translateZ(-360px) stagger(34ms)",
easing: "ease",
queueLimit: 3,
animateChangeLayout: true,
animateResizeTargets: true
}
});
}
mixitup();
}
*/