Problem with scrollto offset javascript because of header

后端 未结 2 1425
醉话见心
醉话见心 2021-01-23 00:39

I need help with this scrollto code snippet. The problem is that I need to set an offset to account for my menu. Without the offset the header that I scroll to gets buried under

2条回答
  •  醉话见心
    2021-01-23 01:20

    Just a suggestion have you tried something like:

    window.scrollTo({top: (jQuery('#2').position().top-jQuery('header').height()), behavior: 'smooth' })
    

    ?

    Where #2 would be taken from your this.hash target above?

提交回复
热议问题