aboutsummaryrefslogtreecommitdiff
path: root/website3/public/assets/js/menu.js
diff options
context:
space:
mode:
Diffstat (limited to 'website3/public/assets/js/menu.js')
-rw-r--r--website3/public/assets/js/menu.js40
1 files changed, 40 insertions, 0 deletions
diff --git a/website3/public/assets/js/menu.js b/website3/public/assets/js/menu.js
new file mode 100644
index 0000000..8994ac9
--- /dev/null
+++ b/website3/public/assets/js/menu.js
@@ -0,0 +1,40 @@
+document.addEventListener('DOMContentLoaded', function () {
+ // menu overlay so we can open and close it bruh
+ const overlay = document.querySelector('.menu-overlay');
+ const hamburger = document.querySelector('.hamburger-menu');
+
+ function toggleMenu() {
+ if (overlay.classList.contains('open')) {
+ overlay.classList.remove('open');
+ setTimeout(() => {
+ overlay.style.visibility = 'hidden';
+ }, 400); // match this delay with the css transition duration because ja isch halt so
+ } else {
+ overlay.style.visibility = 'visible';
+ overlay.classList.add('open');
+ }
+ hamburger.classList.toggle('open');
+ document.body.style.overflow = overlay.classList.contains('open') ? 'hidden' : ''; // no scrolling on the main page while menu is open
+ }
+
+ // if burger king menu button exists, hook it up to toggle the menu
+ if (hamburger) {
+ hamburger.addEventListener('click', function () {
+ toggleMenu();
+ });
+ }
+
+ // close menu when clicking a link inside it because so funktioniert das halt, pech gha wenns der nid passt lol
+ if (overlay) {
+ overlay.querySelectorAll('a').forEach(link => {
+ link.addEventListener('click', () => {
+ overlay.classList.remove('open');
+ setTimeout(() => {
+ overlay.style.visibility = 'hidden';
+ hamburger.classList.remove('open');
+ document.body.style.overflow = ''; // kei ahnig was das macht aber es het mis problem emol glöst
+ }, 400); // match transition duration ... again no clue what this actually does but it works so i'm not touching it
+ });
+ });
+ }
+}); \ No newline at end of file