Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- jQuery(function ($) {
- $(window).scroll(function () {
- var scrollPos = $(window).scrollTop();
- $('.ov-seccion-scroll').each(function (i) {
- var topPos = $(this).offset().top;
- if ((topPos - scrollPos) <= 180) {
- $('.ov-menu-activo').removeClass('ov-menu-activo')
- $('.ov-enlace-menu').eq(i).addClass('ov-menu-activo')
- }
- })
- });
- });
- </script>
- <style>
- .ov-menu-activo h4 span {
- color: #fff !important;
- }
- </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement