/// $(document).ready(function () { /* URL INITIATED FUNCTIONS */ var id = new URLSearchParams(window.location.search).get("id"); if (id && id != "" && $("*[role='tablist']").length > 0) { $("*[role='tablist'] > li").each(function () { if ($(this).attr("id") == id) { $(this).addClass("f-active").attr({ "aria-selected": "true" }); var others = $(this).attr("aria-controls").split(" "); for (var i in others) { $("#" + others[i]).addClass("f-active").attr({ "aria-hidden": "false" }); } $(this).siblings().each( function () { $(this).removeClass("f-active").attr({ "aria-selected": "false" }); others = $(this).attr("aria-controls").split(" "); for (var i in others) { $("#" + others[i]).removeClass("f-active").attr({ "aria-hidden": "true" }); } } ); } }); } /* ELEMENT FUNCTIONS */ $(".s-f-scroll").on("click", function () { $("html, body").animate({ scrollTop: $(".m-immersive-hero").offset().top + $(".m-immersive-hero").outerHeight(true) }, 700); $(this).removeClass("s-bounce"); return false; }); if ($(".eqheight").length > 0) { $(".eqheight").matchHeight(); } $(".c-content-toggle").on("click", function () { $(this).find("button").trigger("click"); $(this).siblings(".c-content-toggle").find("button[aria-expanded='true']").attr("aria-expanded", "false").end().find("*[data-f-expanded='true']").attr("data-f-expanded", "false").attr("aria-hidden", "true").css({ "max-height": "0" }); }); $(".c-content-toggle > button, .c-content-toggle a").on("click", function (event) { event.stopPropagation(); }) $(".s-hills-container").each(function () { var v = 1; // versatz nach rechts var w = 50; // abstand zum rand vom 3. punkt var h = 1; // versatz höhe var hills = ""; for (i = 0; i <= 9; i++) { var x1 = Math.floor(Math.random() * 150 + v) + -200; var x2 = Math.floor(Math.random() * 400 + v) + x1 + 250; var x3 = Math.max(Math.floor(Math.random() * x2 - w), x1 + w); var y1 = Math.floor(Math.random() * 190 - h) + 10; if (y1 < 0) { y1 = Math.floor(Math.random() * 80) + 30; } v = v + 80; h = h + 10; var style; if (y1 > 180) { animationClass = 's-animation-hill-1' } else if (y1 > 120) { animationClass = 's-animation-hill-2' } else { animationClass = 's-animation-hill-3' } hills += ''; } $(this).html("" + hills + ""); }); $("[data-click='open-in-popup']").on("click", function (e) { var popupWidth = "590"; var popupHeight = "600"; var left = (screen.width / 2) - (popupWidth / 2); var top = (screen.height / 2) - (popupHeight / 2); if (window.open($(this).attr("href"), "_blank", "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, copyhistory=no, width=" + popupWidth + ", height=" + popupHeight + ", top=" + top + ", left=" + left)) { return false; } }); }); function renderMap(options) { var location = new Microsoft.Maps.Location(options.latitude, options.longitude); var map = new Microsoft.Maps.Map(document.getElementById('myMap'), { credentials: "AiVzBFWO1Zgy-3BSqFKGVlgA46OFmxpdpNbQzYKmgfrfjNll6F3xNiAeqmPOlrHv", center: location, zoom: 15, disableScrollWheelZoom: true, navigationBarMode: Microsoft.Maps.NavigationBarMode.compact }); map.entities.push(new Microsoft.Maps.Pushpin(location, { icon: '', title: options.title, subTitle: options.subTitle, anchor: new Microsoft.Maps.Point(20, 20) })); var offset = new Microsoft.Maps.Point(0, 0); var p = map.tryLocationToPixel(location); p.x += offset.x; p.y += offset.y; map.setView({ center: map.tryPixelToLocation(p) }); } /* VIDEO PLAYBACK FUNCTIONS */ function off() { $("video").each(function () { $(this).get(0).pause(); }); } function setid(d) { var url = window.location.href; if (url.indexOf('?id=') > -1) { window.history.pushState({}, document.title, url.split('?')[0]); } else { var guid = d.getAttribute("data-target").substring(7); window.history.pushState({}, document.title, url + "?id=" + guid); } }