Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

WheelEvent.deltaY

Esta traducción está incompleta. Por favor, ayuda a traducir este artículo del inglés.

La propiedad de solo lectura WheelEvent.deltaY es un double que representa la cantidad de deslizamiento vertical en la unidad WheelEvent.deltaMode .

Sintaxis

var dY = event.deltaY;

Ejemplo

var syntheticEvent = new WheelEvent("syntheticWheel", {"deltaY": 4, "deltaMode": 0});

console.log(syntheticEvent.deltaY);

Especificaciones

Especificación Estado Comentario
Document Object Model (DOM) Level 3 Events Specification
The definition of 'WheelEvent.deltaY' in that specification.
Working Draft Initial definition.

Compatibilidad de los navegadores

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support 31 17.0 (17.0) 9.0 [1] 18 9.0
Feature Android Firefox Mobile (Gecko) IE Phone Opera Mobile Safari Mobile
Basic support (Yes) 17.0 (17.0) ? (Yes) No support

[1] IE9 soporta un viejo boceto de esta propuedad cuyo valor de retorno era un long en vez de un double.

Ver más

Etiquetas y colaboradores del documento

 Colaboradores en esta página: Thargelion
 Última actualización por: Thargelion,