使用 .scrollto 插件时,jQuery 对话框会离开屏幕(使用 jsfiddle 复制)

发布于 2024-12-25 10:20:05 字数 229 浏览 2 评论 0原文

我需要在窗口滚动到特定元素后显示一个对话框。目前,对话框在页面顶部打开,然后窗口移动到预期元素。这意味着该对话框现在隐藏在页面顶部。

这是 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 技术交流群。

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

发布评论

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

评论(2

南城旧梦 2025-01-01 10:20:05

http://jsfiddle.net/t5ftM/1/

$.scrollTo("#scroll_here", 500, {
    offset: -200,
    onAfter: function() {
        $("#dialog1").dialog({
            autoOpen: true,
            title: 'Create',
            buttons: {
                "Save": function() {
                    $('#form').submit();
                },
            },
            modal: true,
            minWidth: 300,
            minHeight: 100
        });
    }});

http://jsfiddle.net/t5ftM/1/

$.scrollTo("#scroll_here", 500, {
    offset: -200,
    onAfter: function() {
        $("#dialog1").dialog({
            autoOpen: true,
            title: 'Create',
            buttons: {
                "Save": function() {
                    $('#form').submit();
                },
            },
            modal: true,
            minWidth: 300,
            minHeight: 100
        });
    }});
浮华 2025-01-01 10:20:05

您告诉页面滚动...

这一行:

$.scrollTo("#scroll_here", 500, {offset:-200});

自动将页面滚动到 #scroll_here div。并且也会弹出“文档就绪”对话框。如果您不希望页面在加载时滚动,则需要包装其中一个函数,以便它作为回调发生。这将允许一个进程完成,然后显示第二个进程。

You're telling the page to scroll...

This line :

$.scrollTo("#scroll_here", 500, {offset:-200});

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.

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