PointerEvent.width
The width
read-only property of the PointerEvent
interface represents the width of the pointer's contact geometry along the x-axis, measured in CSS pixels. Depending on the source of the pointer device (such as a finger), for a given pointer, each event may produce a different value.
If the input hardware cannot report the contact geometry to the browser, the width defaults to 1
.
Syntax
var contactWidth = pointerEvent.width;
Return value
contactWidth
-
The width of the event's contact area (in CSS pixels).
Example
This example illustrates using the PointerEvent
interface's width
and height
properties to calculate the contact area.
target.addEventListener("pointerdown", function(ev) { // Calculate the contact area var area = ev.width * ev.height; }, false);
Specifications
Specification |
---|
Pointer Events # dom-pointerevent-width |
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
width |
55 |
12 |
59
41
|
11
10
Returns values in screen pixels instead of CSS document pixels.
|
42 |
13 |
55 |
55 |
79
41
|
42 |
13 |
6.0 |
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/width