超时后滚动窗口
我希望能够使用 jQuery 的scrollTo 插件在加载 Google 方向时将窗口动画向下滚动到 div。有人可以帮我将 setTimeout 行转换为 jQuery 并使用scrollTo 来设置滚动动画吗?这是不滚动的 JavaScript:
GEvent.addListener(gdir, 'load', onGDirectionsLoad)
function onGDirectionsLoad(){
setTimeout('eval(\'window.location = "#directions"\;\')', 500);
}
I would like to be able to use jQuery's scrollTo plugin to animate the window scroll down to a div when Google directions are loaded. Could someone please help me convert the setTimeout line to jQuery and use scrollTo to animate the scroll? Here is the javascript that doesn't scroll:
GEvent.addListener(gdir, 'load', onGDirectionsLoad)
function onGDirectionsLoad(){
setTimeout('eval(\'window.location = "#directions"\;\')', 500);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用匿名函数而不是
eval()
:* 使用 Ariel Flesler 的 $.scrollTo() jQuery 插件。
Use an anonymous function rather than
eval()
:* Uses Ariel Flesler's $.scrollTo() jQuery Plugin.