ElementHandle.isIntersectingViewport() 方法
如果元素在当前视口中可见,则解析为 true。 如果元素是 SVG,我们会检查 svg 所有者元素是否在视口中。 请参阅 https://crbug.com/963246。
签名
class ElementHandle {
isIntersectingViewport(
this: ElementHandle<Element>,
options?: {
threshold?: number;
},
): Promise<boolean>;
}
参数
参数 | 类型 | 描述 |
---|---|---|
this | ElementHandle<Element> | |
options | { threshold?: number; } | (可选) 介于 0(无交集)和 1(完全交集)之间的交集阈值。 默认为 1。 |
返回值
Promise<boolean>