mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
24 lines
437 B
Markdown
24 lines
437 B
Markdown
---
|
|
sidebar_label: Viewport.deviceScaleFactor
|
|
---
|
|
|
|
# Viewport.deviceScaleFactor property
|
|
|
|
Specify device scale factor. See [devicePixelRatio](https://developer.mozilla.org/en-US/docs/Web/API/Window/devicePixelRatio) for more info.
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
interface Viewport {
|
|
deviceScaleFactor?: number;
|
|
}
|
|
```
|
|
|
|
#### Default value:
|
|
|
|
1
|
|
|
|
## Remarks
|
|
|
|
Setting this value to `0` will set the deviceScaleFactor to the system default.
|