Affix is not working in Bootstrap 4 (alpha)

前端 未结 10 539
暖寄归人
暖寄归人 2020-12-02 21:30

According to Bootstrap 3 docs I have added following attributes to a navbar:

10条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-02 22:04

    For the users who are looking for an answer in pure Javascript, this is how you can do it by using pure Javascript:

    window.onscroll = (e) => {
        let scrollValue = window.scrollY;
        if (scrollValue > 120) {
            document.querySelector('.navbar').classList.add('affix');
        } else{
            document.querySelector('.navbar').classList.remove('affix');
        }
    }
    

提交回复
热议问题