如何使用平滑滚动重定向到不同页面上的特定 div
how to Redirect to a specific div on a different page with smooth scroll
我正在学习制作一个网站,同时在带有 "read" 按钮的食谱部分实现锚点 link,它是食谱部分,它成功重定向,但问题是如何进行平滑滚动发生?。
请在https://ginzer2.imfast.io/下方找到link,这是用bootstrap制作的 3. 请帮助实现这个
查看文档 here
const elem = document.querySelector('#element_id')
elem.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
我正在学习制作一个网站,同时在带有 "read" 按钮的食谱部分实现锚点 link,它是食谱部分,它成功重定向,但问题是如何进行平滑滚动发生?。 请在https://ginzer2.imfast.io/下方找到link,这是用bootstrap制作的 3. 请帮助实现这个
查看文档 here
const elem = document.querySelector('#element_id')
elem.scrollIntoView({
behavior: 'smooth',
block: 'start'
});