gpt4 book ai didi

gwt - 如何知道 GWT ScrollPanel 中正在显示哪个元素

转载 作者:行者123 更新时间:2023-12-04 14:38:09 25 4
gpt4 key购买 nike

关于 GWT ScrollPanel 的问题。

有什么办法可以确定在 ScrollPanel 中显示的是哪个子元素?

(当然,ScrollPanel 包含具有 HTML 对象的 DecoratorPanel)

最佳答案

这是执行作业的 GWT 方法(它是从上面建议的 JQuery 解决方案翻译而来的)。

    /**
* @param widget the widget to check
* @return true if the widget is in the visible part of the page
*/
private boolean isScrolledIntoView(Widget widget) {
if (widget != null) {
int docViewTop = Window.getScrollTop();
int docViewBottom = docViewTop + Window.getClientHeight();
int elemTop = widget.getAbsoluteTop();
int elemBottom = elemTop + widget.getOffsetHeight();
return ((elemBottom <= docViewBottom) && (elemTop >= docViewTop));
}
return false;
}

关于gwt - 如何知道 GWT ScrollPanel 中正在显示哪个元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7225660/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com