Vector.js | فراغیب
پرش به ناوبری
پرش به جستجو
Esfandiari (بحث | مشارکتها) صفحهای تازه حاوی «window.scrollTo({top:0,behavior:"smooth"});» ایجاد کرد |
Esfandiari (بحث | مشارکتها) بدون خلاصۀ ویرایش |
||
| خط ۱: | خط ۱: | ||
// اسکرول نرم | |||
document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |||
anchor.addEventListener('click', function (e) { | |||
e.preventDefault(); | |||
document.querySelector(this.getAttribute('href')).scrollIntoView({ | |||
behavior: 'smooth' | |||
}); | |||
}); | |||
}); | |||