Does scrollIntoView work in all browsers?

前端 未结 6 494
不思量自难忘°
不思量自难忘° 2020-11-29 00:46

Does scrollIntoView() work in all browsers? If not is there a jQuery alternative?

6条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-29 01:28

    Have not tried this, but seems like piggybacking on built in scrollIntoView function would save much code. Here is what I would do if you want animated action:

    1. Cache current scroll position of the container as START POSITION
    2. run built in scrollIntoView
    3. Cache the scroll position again as the END POSITION
    4. Return container back to START POSITION
    5. Animate scrolling to END POSITION

提交回复
热议问题