Advertisement
oscarviedma

Código tutorial navegación fija secundaria

Jan 15th, 2022
2,199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <script>
  2. jQuery(function ($) {
  3. $(window).scroll(function () {
  4. var scrollPos = $(window).scrollTop();
  5. $('.ov-seccion-scroll').each(function (i) {
  6. var topPos = $(this).offset().top;
  7. if ((topPos - scrollPos) <= 180) {
  8. $('.ov-menu-activo').removeClass('ov-menu-activo')
  9. $('.ov-enlace-menu').eq(i).addClass('ov-menu-activo')
  10. }
  11. })
  12. });
  13. });
  14. </script>
  15.  
  16. <style>
  17. .ov-menu-activo h4 span {
  18. color: #fff !important;
  19. }
  20. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement