2024-01-21 14:18:25 +01:00
|
|
|
(($) => {
|
2024-09-19 20:26:42 +02:00
|
|
|
"use strict";
|
2022-03-18 13:35:57 +01:00
|
|
|
|
2023-04-23 14:14:40 +02:00
|
|
|
// adapt header to height
|
2024-09-19 20:26:42 +02:00
|
|
|
function adaptHeight() {
|
|
|
|
var height = $(".top-header").innerHeight();
|
|
|
|
if ($("header").offset().top > 10) {
|
|
|
|
$(".top-header").addClass("hide");
|
|
|
|
$(".navigation").addClass("nav-bg");
|
|
|
|
$(".navigation").css("margin-top", "-" + height + "px");
|
2023-02-01 20:24:20 +01:00
|
|
|
} else {
|
2024-09-19 20:26:42 +02:00
|
|
|
$(".top-header").removeClass("hide");
|
|
|
|
if (!$("#top-banner").length) {
|
|
|
|
$(".navigation").removeClass("nav-bg");
|
2023-02-01 20:24:20 +01:00
|
|
|
}
|
2024-09-19 20:26:42 +02:00
|
|
|
$(".navigation").css("margin-top", "-" + 0 + "px");
|
2023-02-01 20:24:20 +01:00
|
|
|
}
|
2023-02-09 12:29:38 +01:00
|
|
|
}
|
|
|
|
|
2023-04-23 14:14:40 +02:00
|
|
|
// load scripts
|
2024-09-19 20:26:42 +02:00
|
|
|
$(window).on("load", function () {
|
|
|
|
$(".preloader").fadeOut(100);
|
2023-02-09 12:29:38 +01:00
|
|
|
adaptHeight();
|
2024-09-19 20:26:42 +02:00
|
|
|
if ($("#top-banner").length) {
|
|
|
|
$(".navigation").addClass("nav-bg");
|
|
|
|
$(".hero-section").addClass("hs-banner");
|
|
|
|
$(".page-title-section").addClass("pts-banner");
|
2023-02-01 20:24:20 +01:00
|
|
|
} else {
|
2024-09-19 20:26:42 +02:00
|
|
|
$(".hero-section").removeClass("hs-banner");
|
|
|
|
$(".page-title-section").removeClass("pts-banner");
|
2023-02-01 20:24:20 +01:00
|
|
|
}
|
2022-03-18 13:35:57 +01:00
|
|
|
});
|
|
|
|
|
2023-04-23 14:14:40 +02:00
|
|
|
// sticky menu
|
2023-02-09 12:29:38 +01:00
|
|
|
$(window).scroll(adaptHeight);
|
2022-03-18 13:35:57 +01:00
|
|
|
|
2023-04-23 14:14:40 +02:00
|
|
|
// hero slider
|
2024-09-19 20:26:42 +02:00
|
|
|
$(".hero-slider").slick({
|
2022-03-18 13:35:57 +01:00
|
|
|
autoplay: true,
|
2023-02-01 20:24:20 +01:00
|
|
|
autoplaySpeed: 5000,
|
2022-03-18 13:35:57 +01:00
|
|
|
pauseOnFocus: false,
|
2023-04-04 15:28:15 +02:00
|
|
|
pauseOnHover: true,
|
2022-03-18 13:35:57 +01:00
|
|
|
infinite: true,
|
|
|
|
arrows: true,
|
2024-09-19 20:26:42 +02:00
|
|
|
prevArrow:
|
|
|
|
'<button type=\'button\' class=\'prevArrow\'><svg xmlns="http://www.w3.org/2000/svg" id="mdi-chevron-left" class="arrowIcon" viewBox="0 0 24 24" height="1em" width="1em" fill="currentColor"><path d="M15.41,16.58L10.83,12L15.41,7.41L14,6L8,12L14,18L15.41,16.58Z" /></svg></button>',
|
|
|
|
nextArrow:
|
|
|
|
'<button type=\'button\' class=\'nextArrow\'><svg xmlns="http://www.w3.org/2000/svg" id="mdi-chevron-left" class="arrowIcon" viewBox="0 0 24 24" height="1em" width="1em" fill="currentColor"><path xmlns="http://www.w3.org/2000/svg" d="M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z"/></svg></button>',
|
|
|
|
dots: true,
|
2022-03-18 13:35:57 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
// venobox popup
|
2024-09-19 20:26:42 +02:00
|
|
|
$(document).ready(function () {
|
|
|
|
// @ts-ignore
|
2024-02-04 22:55:35 +01:00
|
|
|
new VenoBox({
|
2024-09-19 20:26:42 +02:00
|
|
|
selector: ".vb-video",
|
|
|
|
spinner: "grid",
|
2024-02-04 22:55:35 +01:00
|
|
|
});
|
2024-09-19 20:26:42 +02:00
|
|
|
// @ts-ignore
|
2024-02-04 22:55:35 +01:00
|
|
|
new VenoBox({
|
2024-09-19 20:26:42 +02:00
|
|
|
selector: ".vb-gallery",
|
2023-04-04 13:22:45 +02:00
|
|
|
numeration: true,
|
|
|
|
infinigall: true,
|
|
|
|
share: true,
|
2024-09-19 20:26:42 +02:00
|
|
|
shareStyle: "block",
|
|
|
|
spinner: "grid",
|
2024-02-04 23:04:45 +01:00
|
|
|
fitView: true,
|
|
|
|
navTouch: true,
|
2023-04-04 13:22:45 +02:00
|
|
|
});
|
2022-03-18 13:35:57 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
// filter
|
2024-09-19 20:26:42 +02:00
|
|
|
$(document).ready(function () {
|
|
|
|
if ($(".filter-container").length != 0) {
|
|
|
|
// @ts-ignore
|
|
|
|
const shuffleInstance = new Shuffle($(".filter-container"), {
|
|
|
|
itemSelector: ".filter-item",
|
|
|
|
sizer: ".filter-sizer",
|
|
|
|
delimiter: ",",
|
|
|
|
isCentered: true,
|
2024-01-21 14:18:25 +01:00
|
|
|
});
|
2024-09-19 20:26:42 +02:00
|
|
|
$(".filter-controls li").on("click", function () {
|
|
|
|
$(".filter-controls li").removeClass("active");
|
|
|
|
$(this).addClass("active");
|
|
|
|
shuffleInstance.filter($(this).data("filter"));
|
2024-01-21 14:18:25 +01:00
|
|
|
});
|
|
|
|
}
|
2022-03-18 13:35:57 +01:00
|
|
|
});
|
|
|
|
|
2024-01-21 14:18:25 +01:00
|
|
|
// counter
|
2024-09-19 20:26:42 +02:00
|
|
|
$(window).on("scroll", function () {
|
|
|
|
var oTop = 0;
|
|
|
|
if ($(".count").length !== 0) {
|
|
|
|
oTop = $(".count").offset().top - window.innerHeight;
|
2022-03-18 13:35:57 +01:00
|
|
|
}
|
|
|
|
if ($(window).scrollTop() > oTop) {
|
2024-09-19 20:26:42 +02:00
|
|
|
$(".count").each(function () {
|
|
|
|
var $this = $(this),
|
|
|
|
countTo = $this.attr("data-count");
|
2024-01-21 14:18:25 +01:00
|
|
|
$({ countNum: $this.text() }).animate(
|
|
|
|
{ countNum: countTo },
|
|
|
|
{
|
|
|
|
duration: 1000,
|
2024-09-19 20:26:42 +02:00
|
|
|
easing: "swing",
|
|
|
|
step: function () {
|
|
|
|
return $this.text(Math.floor(this.countNum));
|
|
|
|
},
|
|
|
|
complete: function () {
|
|
|
|
return $this.text(this.countNum);
|
|
|
|
},
|
|
|
|
}
|
|
|
|
);
|
2022-03-18 13:35:57 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2024-01-21 14:18:25 +01:00
|
|
|
|
2024-09-19 20:26:42 +02:00
|
|
|
$(window).on("DOMContentLoaded", function () {
|
|
|
|
// @ts-ignore
|
|
|
|
new PagefindUI({
|
|
|
|
element: "#search",
|
|
|
|
translations: {
|
|
|
|
placeholder: "Suchen...",
|
|
|
|
zero_results: "Leider konnten keine Ergebnisse zu [SEARCH_TERM] gefunden werden",
|
|
|
|
clear_search: "Löschen",
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#pagefind-search").on("shown.bs.modal", function () {
|
|
|
|
$(".pagefind-ui__search-input").focus();
|
|
|
|
});
|
2024-01-21 14:18:25 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
// enable matomo analytics
|
2024-09-19 20:26:42 +02:00
|
|
|
// @ts-ignore
|
|
|
|
var _paq = (window._paq = window._paq || []);
|
2024-01-21 14:18:25 +01:00
|
|
|
_paq.push(["setDoNotTrack", true]);
|
|
|
|
_paq.push(["disableCookies"]);
|
2024-09-19 20:26:42 +02:00
|
|
|
_paq.push(["trackPageView"]);
|
|
|
|
_paq.push(["enableLinkTracking"]);
|
|
|
|
(function () {
|
|
|
|
var u = "https://analytics.cantorgymnasium.de/";
|
|
|
|
_paq.push(["setTrackerUrl", u + "matomo.php"]);
|
|
|
|
_paq.push(["setSiteId", "1"]);
|
|
|
|
var d = document,
|
|
|
|
g = d.createElement("script"),
|
|
|
|
s = d.getElementsByTagName("script")[0];
|
|
|
|
g.async = true;
|
|
|
|
g.src = u + "matomo.js";
|
|
|
|
s.parentNode.insertBefore(g, s);
|
2024-01-21 14:18:25 +01:00
|
|
|
})();
|
|
|
|
|
2024-09-19 20:26:42 +02:00
|
|
|
// @ts-ignore
|
2024-01-21 14:18:25 +01:00
|
|
|
new LazyLoad();
|
2024-09-19 20:26:42 +02:00
|
|
|
// @ts-ignore
|
2022-03-18 13:35:57 +01:00
|
|
|
})(jQuery);
|