files/en-us/web/api/mouseevent/movementy/index.md
{{APIRef("Pointer Lock API")}}
The movementY read-only property of the {{domxref("MouseEvent")}} interface provides the difference in the Y coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
In other words, the value of the property is computed like this: currentEvent.movementY = currentEvent.screenY - previousEvent.screenY.
The value is zero for all events other than {{domxref("Element/mousemove_event", "mousemove")}}, {{domxref("Element/pointermove_event", "pointermove")}}, and {{domxref("Element/pointerrawupdate_event", "pointerrawupdate")}}.
[!WARNING] Browsers use different units for
movementYandscreenYthan what the specification defines. Depending on the browser and operating system, themovementYunits may be a physical pixel, a logical pixel, or a CSS pixel. You may want to avoid the movement properties, and instead calculate the delta between the current client values ({{domxref("MouseEvent.screenX", "screenX")}}, {{domxref("MouseEvent.screenY", "screenY")}}) and the previous client values.
A number.
Always zero on any {{domxref("MouseEvent")}} other than mousemove, and any {{domxref("PointerEvent")}} other than pointermove or pointerrawupdate.
mousemove eventsThis example logs the amount of mouse movement using {{domxref("MouseEvent.movementX", "movementX")}} and movementY.
<p id="log">Move your mouse around inside this element.</p>
const log = document.getElementById("log");
function logMovement(event) {
log.innerText = `movement: ${event.movementX}, ${event.movementY}\n${log.innerText}`;
}
document.addEventListener("mousemove", logMovement);
{{EmbedLiveSample("Log mouse movement for mousemove events")}}
{{Specifications}}
{{Compat}}