Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. <div class="header-menu">
  2. <a class="header-menu__link" data-menuanchor="what-we-do" href="#whatWeDo">
  3. <div class="header-menu__text">Чем мы занимаемся?</div>
  4. </a>
  5. <a class="header-menu__link" data-menuanchor="work-process" href="#workProcess">
  6. <div class="header-menu__text">Процесс работы</div>
  7. </a>
  8. <a class="header-menu__link" data-menuanchor="why-us" href="#whyUs">
  9. <div class="header-menu__text">Почему именно мы?</div>
  10. </a>
  11. <a class="header-menu__link" data-menuanchor="prices" href="#Prices" id="Pricess">
  12. <div class="header-menu__text">Прайс</div>
  13. </a>
  14. <a class="header-menu__link header-menu__link_order" data-menuanchor="order" href="#Order">
  15. <div class="header-menu__text">Сделать заказ</div>
  16. </a>
  17. </div>
  18. </div>
  19.  
  20. window.onscroll = function() {
  21.  
  22. if(document.location.hash == '#Prices')
  23. {
  24. document.getElementById('Pricess').style.color = '#f3a7f6';
  25. console.log('document.location', document.location.hash);
  26. }
  27. else {
  28. document.getElementById('Pricess').style.color = '#fff';
  29. }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement