Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. CaptureController
  4. resetZoomLevel()

CaptureController: resetZoomLevel() method

Experimental:This is anexperimental technology
Check theBrowser compatibility table carefully before using this in production.

Secure context: This feature is available only insecure contexts (HTTPS), in some or allsupporting browsers.

TheCaptureController interface'sresetZoomLevel() method resets the captured display surface's zoom to its initial level, which is100.

TheresetZoomLevel() method must be invoked viatransient activation. In addition, the user is asked for permission to share tabs when screen capture is first attempted; if the user denies permission the zoom level cannot be changed even with transient activation.

Syntax

js
resetZoomLevel()

Parameters

None.

Return value

APromise that fulfills withundefined.

Exceptions

InvalidStateErrorDOMException

An attempt is made to invokeresetZoomLevel() without transient activation.

NotAllowedErrorDOMException

Thrown when:

Examples

BasicresetZoomLevel() usage

The following snippet adds an event listener to a button so that when it is clicked, theresetZoom() function is called. This in turn calls theresetZoomLevel() method, resetting the captured surface's zoom level to100.

js
// Create controller and start captureconst controller = new CaptureController();videoElem.srcObject = await navigator.mediaDevices.getDisplayMedia({  controller,});// ...resetBtn.addEventListener("click", resetZoom);async function resetZoom() {  await controller.resetZoomLevel();}

SeeUsing the Captured Surface Control API for a full working example.

Specifications

Specification
Captured Surface Control
# dom-capturecontroller-resetzoomlevel

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp