Element: requestPointerLock() method
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
TherequestPointerLock() method of theElement interface lets you asynchronously ask for the pointer to be locked on the given element.
To track the success or failure of the request, it is necessary to listen for thepointerlockchange andpointerlockerror events at theDocument level.
Note:In the current specification,requestPointerLock() only communicates the success or failure of the request by firingpointerlockchange orpointerlockerror events.A proposed update to the specification updatesrequestPointerLock() to return aPromise which communicates success or failure. This page documents the version that returns aPromise. However, note that this version is not yet a standard and is not implemented by all browsers. SeeBrowser compatibility for more information.
In this article
Syntax
requestPointerLock()requestPointerLock(options)Parameters
optionsOptionalAn options object that can contain the following properties:
unadjustedMovementOptionalDisables OS-level adjustment for mouse acceleration, and accesses raw mouse input instead. The default value is
false; setting it totruewill disable mouse acceleration.
Return value
Security
Transient activation is required when callingrequestPointerLock(). The user has to interact with the page or a UI element in order for this feature to work. Also, the target element's associated document must be in the active state.
If callingrequestPointerLock() immediately after releasing the pointer lock via the default unlock gesture (instead of through anexitPointerLock() call), the call will fail, even if atransient activation is available.
If callingrequestPointerLock() withrequestFullscreen(), therequestPointerLock() must be called first, because therequestFullscreen() will consume the state oftransient activation.
Theallow-pointer-locksandbox token must be added when callingrequestPointerLock() in an<iframe> element. Also, no other elements in other<iframe> elements may be in pointer lock mode.
Examples
Pointer lock is often used in online games, when you want your mouse movement to be focused on controlling the game, without the distraction of the mouse pointer moving around, going outside the game area, or reaching the edge of the window.
To enable pointer lock, you would get the user to interact with the UI in some way, perhaps by pressing a button, or the game canvas itself.
canvas.addEventListener("click", async () => { await canvas.requestPointerLock();});Operating systems enable mouse acceleration by default, which is useful when you sometimes want slow precise movement (think about you might use a graphics package), but also want to move great distances with a faster mouse movement (think about scrolling, and selecting several files). For some first-person perspective games however, raw mouse input data is preferred for controlling camera rotation — where the same distance movement, fast or slow, results in the same rotation. This results in a better gaming experience and higher accuracy, according to professional gamers.
To disable OS-level mouse acceleration and access raw mouse input, you can set theunadjustedMovement totrue:
canvas.addEventListener("click", async () => { await canvas.requestPointerLock({ unadjustedMovement: true, });});For more example code, see:
Specifications
| Specification |
|---|
| Pointer Lock 2.0> # dom-element-requestpointerlock> |