Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // nav
- const navBtns = document.querySelectorAll('.nav-btn');
- navBtns.forEach(btn => {
- btn.addEventListener('click', () => {
- const sectionId = btn.getAttribute('data-section');
- const sections = document.querySelectorAll('section');
- sections.forEach(section => {
- if (section.classList.contains(sectionId)) {
- section.classList.add('active');
- } else {
- section.classList.remove('active');
- }
- });
- });
- navBtns.forEach(btn => {
- btn.addEventListener('mouseenter', () => {
- const text = btn.querySelector('.text');
- text.style.display = 'inline';
- });
- btn.addEventListener('mouseleave', () => {
- const text = btn.querySelector('.text');
- text.style.display = 'none';
- });
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment