easy way navbar bootstrap

前端 未结 1 1967
抹茶落季
抹茶落季 2021-01-16 22:53

I started to use Bootstrap. Right now I am looking for a navbar in bootstrap here. The side navbar html and JavaScript I tried to take (the fixed side navbar see it in the l

1条回答
  •  感情败类
    2021-01-16 23:51

    If you're looking to add the fixed sidebar like bootstrap uses for their docs, like noted here http://getbootstrap.com/javascript/#affix, try this:

    Add id="foo" data-spy="affix" data-offset-top="100" data-offset-bottom="10" to the

    or
      you want to lock in place upon scroll.

      and add the javascript at the bottom of your page:

      
      

      From there, you'll want to adjust the height at which you want it to lock by adjusting the 'top' elements.

      For example:

      FYI, I would suggest a more new title for your post, perhaps "Fixed/sticky navigation with bootstrap." instead of "easy way navbar bootstrap" (just my opinion)

    0 讨论(0)
提交回复
热议问题