mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
28154eff6f
Co-authored-by: Alex Rudenko <alexrudenko@chromium.org>
32 lines
1.3 KiB
Markdown
32 lines
1.3 KiB
Markdown
---
|
|
sidebar_label: ElementHandle.isIntersectingViewport
|
|
---
|
|
|
|
# ElementHandle.isIntersectingViewport() method
|
|
|
|
Resolves to true if the element is visible in the current viewport. If an element is an SVG, we check if the svg owner element is in the viewport instead. See https://crbug.com/963246.
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
class ElementHandle {
|
|
isIntersectingViewport(
|
|
this: ElementHandle<Element>,
|
|
options?: {
|
|
threshold?: number;
|
|
}
|
|
): Promise<boolean>;
|
|
}
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --------- | ------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------- |
|
|
| this | [ElementHandle](./puppeteer.elementhandle.md)<Element> | |
|
|
| options | { threshold?: number; } | _(Optional)_ Threshold for the intersection between 0 (no intersection) and 1 (full intersection). Defaults to 1. |
|
|
|
|
**Returns:**
|
|
|
|
Promise<boolean>
|