Guest User

Untitled

a guest
Jun 19th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. $(document).ready(function() {
  2.  
  3.  
  4. $(window).scroll(function(){
  5.  
  6.  
  7. var windowHeight = $(window).scrollTop();
  8. var nosotros = $("#nosotros").offset();
  9. var servicio = $("#servicio").offset();
  10. var header = document.getElementById("navwebalt");
  11.  
  12.  
  13. nosotros = nosotros.top;
  14. servicio = servicio.top;
  15.  
  16.  
  17.  
  18. if(windowHeight >= nosotros && windowHeight !== servicio ){
  19.  
  20.  
  21. header.classList.add("sticky");
  22.  
  23. }else{
  24. header.classList.remove("sticky");
  25. }
  26.  
  27. });
  28.  
  29. });
Add Comment
Please, Sign In to add comment