使用 .scrollto 插件时,jQuery 对话框会离开屏幕(使用 jsfiddle 复制)
我需要在窗口滚动到特定元素后显示一个对话框。目前,对话框在页面顶部打开,然后窗口移动到预期元素。这意味着该对话框现在隐藏在页面顶部。
这是 jsfiddle 中重现的问题: http://jsfiddle.net/t5ftM/
有没有办法可以显示对话框当前滚动位置在哪里?
非常感谢!
I need to show a dialog after the window has scrolled to a specific element. Currently, the dialog opens on top of the page and then the window moves to the intended element. This means the dialog is now hidden on top of the page.
Here is the problem reproduced in jsfiddle: http://jsfiddle.net/t5ftM/
Is there a way I could show the dialog where the current scroll position?
Thanks a ton!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
http://jsfiddle.net/t5ftM/1/
http://jsfiddle.net/t5ftM/1/
您告诉页面滚动...
这一行:
自动将页面滚动到
#scroll_here
div。并且也会弹出“文档就绪”对话框。如果您不希望页面在加载时滚动,则需要包装其中一个函数,以便它作为回调发生。这将允许一个进程完成,然后显示第二个进程。You're telling the page to scroll...
This line :
Automatically scrolls the page to the
#scroll_here
div. And the dialog pops up ad Document Ready as well. If you don't want the page to scroll on load, you need to wrap one of the functions so it occurs as a callback. This will allow one processes to finish, then display the second.