Make element fixed on scroll

前端 未结 10 2432
臣服心动
臣服心动 2020-12-23 02:09

I\'m attempting to make the navigation bar stick to the top, when the user scrolls down to the nav bar and then unstick when the user scrolls back up past the navbar. I unde

10条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-23 02:24

    window.addEventListener("scroll", function(evt) {
        var pos_top = document.body.scrollTop;   
        if(pos_top == 0){
           $('#divID').css('position','fixed');
        }
    
        else if(pos_top > 0){
           $('#divId').css('position','static');
        }
    });
    

提交回复
热议问题