Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- document.addEventListener("DOMContentLoaded", function () {
- const OFFSET = 80;
- // При клике по якорной ссылке
- document.querySelectorAll('a[href^="#"]').forEach(anchor => {
- anchor.addEventListener("click", function (e) {
- const targetId = this.getAttribute("href").substring(1);
- const target = document.getElementById(targetId);
- if (target) {
- e.preventDefault();
- const y = target.getBoundingClientRect().top + window.pageYOffset - OFFSET;
- window.scrollTo({
- top: y,
- behavior: "smooth"
- });
- // Меняем URL без перезагрузки
- history.pushState(null, null, `#${targetId}`);
- }
- });
- });
- // При открытии страницы с якорем в URL
- if (window.location.hash) {
- const targetId = window.location.hash.substring(1);
- const target = document.getElementById(targetId);
- if (target) {
- setTimeout(() => {
- const y = target.getBoundingClientRect().top + window.pageYOffset - OFFSET;
- window.scrollTo({
- top: y,
- behavior: "auto"
- });
- }, 100); // Подождать, пока все прогрузится
- }
- }
- });
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement