Twitter bootstrap change affix offset

前端 未结 3 950
心在旅途
心在旅途 2021-02-04 14:33

I have site where I want \'sub navigation\'. So when you scroll to section, its tool bar will affix below the main toolbar. I have this working, but I can\'t change the top offs

3条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-02-04 15:15

    how about:

                $(window).off('.affix');
                $("#ID_NAME")
                    .removeClass("affix affix-top affix-bottom")
                    .removeData("bs.affix");
                $('#ID_NAME').affix({ 
                  offset: {
                    top: OTHER_VALUE
                  }
                });
    

提交回复
热议问题