滚动到位置 (javascript)

发布于 2024-10-20 03:31:42 字数 205 浏览 0 评论 0原文

我试图让 javascript 将页面滚动到目标位置,例如:

scrollbarxpos += (targetscrollbarxpos - scrollbarxpos) / 100.0f;

基本上一直调用该行代码,直到scrollbarxpos = targetscrollbarxpos。

知道我该怎么做吗?

I'm trying to get javascript to scroll the page to a target position, something like:

scrollbarxpos += (targetscrollbarxpos - scrollbarxpos) / 100.0f;

And basically keep calling that line of code until scrollbarxpos = targetscrollbarxpos.

Any idea how I can go about doing this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

韵柒 2024-10-27 03:31:42

您看过 scrollTo 函数吗?它允许您滚动到页面上具有 x 或 y 坐标的位置。如果您想设置滚动动画,可以使用 setIntervalclearInterval 的某种组合来调用 scrollTo ,直到达到您想要的效果 y-位置。

Have you looked at the scrollTo function? It allows you to scroll to a position on a page with x- or y- coordinates. If you want to animate the scroll, you could use some combination of setInterval and clearInterval to call scrollTo until you've reached your desire y-position.

人疚 2024-10-27 03:31:42

您始终可以使用 jQuery:

http://jsfiddle.net/jtbowden/vJmcK/

You can always use jQuery:

http://jsfiddle.net/jtbowden/vJmcK/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文