f07ad2c661
This PR updates the docs regarding configuring puppeteer. In addition, some changes have been made to the documentation generator to show default values on the documentation site. Also fixes: https://github.com/puppeteer/puppeteer/pull/9144
25 lines
2.2 KiB
Markdown
25 lines
2.2 KiB
Markdown
---
|
|
sidebar_label: Viewport
|
|
---
|
|
|
|
# Viewport interface
|
|
|
|
Sets the viewport of the page.
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
export interface Viewport
|
|
```
|
|
|
|
## Properties
|
|
|
|
| Property | Modifiers | Type | Description | Default |
|
|
| --------------------------------------------------------------- | --------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- |
|
|
| [deviceScaleFactor?](./puppeteer.viewport.devicescalefactor.md) | | number | <i>(Optional)</i> Specify device scale factor. See [devicePixelRatio](https://developer.mozilla.org/en-US/docs/Web/API/Window/devicePixelRatio) for more info. | 1 |
|
|
| [hasTouch?](./puppeteer.viewport.hastouch.md) | | boolean | <i>(Optional)</i> Specify if the viewport supports touch events. | false |
|
|
| [height](./puppeteer.viewport.height.md) | | number | The page height in pixels. | |
|
|
| [isLandscape?](./puppeteer.viewport.islandscape.md) | | boolean | <i>(Optional)</i> Specifies if the viewport is in landscape mode. | false |
|
|
| [isMobile?](./puppeteer.viewport.ismobile.md) | | boolean | <i>(Optional)</i> Whether the <code>meta viewport</code> tag is taken into account. | false |
|
|
| [width](./puppeteer.viewport.width.md) | | number | The page width in pixels. | |
|