-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
23 lines (20 loc) · 808 Bytes
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
const links = [...document.querySelectorAll('.nav-link')];
const navText = ['About', 'Clients', 'Portfolio', 'Careers', 'Fun'];
const navImg = document.querySelector('.navbar-img');
const nav = document.querySelector('.navbar');
const hamburgerMenu = document.querySelector('.hamburger-menu');
links.forEach((link, i) => {
navText[i].split('').forEach((letter, j) => {
const span = document.createElement('span');
span.textContent = letter;
span.style.cssText = `--i: .${j}s`;
link.append(span);
});
link.addEventListener('mouseenter', () => {
navImg.style.transform = `translate(${link.dataset.position}%, -50%) rotate(${link.dataset.position * 8}deg)`;
});
});
hamburgerMenu.addEventListener('click', () => {
nav.classList.toggle('active');
hamburgerMenu.classList.toggle('active');
});