Advertisement
Igor150195

asdasdasd

Apr 5th, 2025
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. document.addEventListener("DOMContentLoaded", function () {
  3.   const OFFSET = 80;
  4.  
  5.   // При клике по якорной ссылке
  6.   document.querySelectorAll('a[href^="#"]').forEach(anchor => {
  7.     anchor.addEventListener("click", function (e) {
  8.       const targetId = this.getAttribute("href").substring(1);
  9.       const target = document.getElementById(targetId);
  10.  
  11.       if (target) {
  12.         e.preventDefault();
  13.  
  14.         const y = target.getBoundingClientRect().top + window.pageYOffset - OFFSET;
  15.  
  16.         window.scrollTo({
  17.           top: y,
  18.           behavior: "smooth"
  19.         });
  20.  
  21.         // Меняем URL без перезагрузки
  22.         history.pushState(null, null, `#${targetId}`);
  23.       }
  24.     });
  25.   });
  26.  
  27.   // При открытии страницы с якорем в URL
  28.   if (window.location.hash) {
  29.     const targetId = window.location.hash.substring(1);
  30.     const target = document.getElementById(targetId);
  31.  
  32.     if (target) {
  33.       setTimeout(() => {
  34.         const y = target.getBoundingClientRect().top + window.pageYOffset - OFFSET;
  35.  
  36.         window.scrollTo({
  37.           top: y,
  38.           behavior: "auto"
  39.         });
  40.       }, 100); // Подождать, пока все прогрузится
  41.     }
  42.   }
  43. });
  44. </script>
  45.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement