Advertisement
Guest User

Untitled

a guest
Feb 1st, 2024
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2.  $(window).on("scroll", function() {
  3.  if (window.location.href.includes("index") == true)
  4.       if ($(window).scrollTop() > 500) {
  5.           $(".navbar-section").addClass("active");
  6.       } else {
  7.           //remove the background property so it comes transparent again (defined in my css)
  8.          $(".navbar-section").removeClass("active");
  9.       }
  10.  if (window.location.href.includes("index") == false)
  11.       if ($(window).scrollTop() > 50) {
  12.           $(".navbar-section").addClass("active");
  13.       } else {
  14.           //remove the background property so it comes transparent again (defined in my css)
  15.          $(".navbar-section").removeClass("active");
  16.       }
  17.  
  18.  
  19.   });
  20.  
  21.  
  22. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement