如何在滚动时固定 PopupPanel 相对于页面的位置

发布于 2024-12-29 20:32:16 字数 265 浏览 0 评论 0原文

本质上,弹出面板与浏览器面板保持固定位置 - 我希望它随页面滚动。

我尝试设置弹出面板的 CSS 元素,使用“position:fixed!important”,但没有成功。

这个问题似乎解释了类似的问题,但我仍然不完全清楚确定修复应该是什么。

知道如何做到这一点吗?

Essentially the popup panel stays a fixed position to the browser panel - where as I want it to scroll with the page.

I've tried setting the CSS element of the popup panel, with 'position: fixed !important' but no success.

This question seems to explain a similar problem, but I'm still not exactly sure what the fix is supposed to be.

Any idea how to do this?

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

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

发布评论

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

评论(1

哆兒滾 2025-01-05 20:32:16

您可以通过以下方式添加 WindowScrollHandler:

    Window.addWindowScrollHandler(new Window.ScrollHandler() {
       public void onWindowScroll(Window.ScrollEvent event) {
         popupPanel.setPopupPosition(event.getScrollLeft()+fromLeft,
                                      event.getScrollTop()+fromTop);
       }
    });

You can add WindowScrollHandler by doing like this:

    Window.addWindowScrollHandler(new Window.ScrollHandler() {
       public void onWindowScroll(Window.ScrollEvent event) {
         popupPanel.setPopupPosition(event.getScrollLeft()+fromLeft,
                                      event.getScrollTop()+fromTop);
       }
    });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文