Свойство deltaY
Значение, которое ожидается при вертикальном прокручивании, в единицах, определяемых deltaMode.
См. также:
- WheelEvent.deltaY от W3C.
Реализация
num get deltaY {
// deltaY may be missing or undefined.
num? value = JS('', '#.deltaY', this);
if (value != null) return value;
throw new UnsupportedError('deltaY is not supported');
}
© 2012 the Dart project authors
Licensed under the BSD 3-Clause "New" or "Revised" License.
https://api.dart.dev/stable/2.18.5/dart-html/WheelEvent/deltaY.html