Spaces:
Running
Running
// Mobile menu toggle const menuBtn = this.shadowRoot.querySelector('.mobile-menu-btn'); const menu = this.shadowRoot.querySelector('ul'); menuBtn.addEventListener('click', () => { menu.classList.toggle('open'); const icon = menuBtn.querySelector('i'); icon.setAttribute('data-feather', menu.classList.contains('open') ? 'x' : 'menu'); feather.replace(); }); // Navbar scroll effect const nav = this.shadowRoot.querySelector('nav'); window.addEventListener('scroll', () => { if (window.scrollY > 50) { nav.classList.add('scrolled'); } else { nav.classList.remove('scrolled'); } }); feather.replace(); } } customElements.define('custom-navbar', CustomNavbar); `; feather.replace(); } } customElements.define('custom-footer', CustomFooter); эмне ката болуп калды кыргызча жасап берчи
1a24f92
verified