Scroll to the center of viewport

后端 未结 4 1821
南笙
南笙 2021-01-31 12:18

I would like to center a div by clicking it. So if I\'m clicking a div I want it to scroll to the center of the browser viewport. I don\'t want to use

4条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-31 12:28

    I know this question is old, but right now, you can use scrollIntoView:

    For example:

    document.body.scrollIntoView({ behavior: 'smooth', inline: 'center', block: 'center' });
    

提交回复
热议问题