WheelEvent deltaY Property

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP







<!--
main_leaderboard, all: [728,90][970,90][320,50][468,60]
-->




WheelEvent deltaY Property



❮ DOM Events
❮ WheelEvent




Example


Return whether the user scrolls up or down:



function myFunction(event)
  var y = event.deltaY;


Try it Yourself »


Definition and Usage


The deltaY property returns a positive value
when scrolling down, and a negative value when scrolling up, otherwise 0.


Note: This property is read-only.



Browser Support














Property
deltaY 31 yes 17 Not supported 18

Syntax



event.deltaY

Technical Details




Return Value:
A
Double, indicating the scrolling direction of the mouse wheel

Related Pages


HTML DOM reference: WheelEvent deltaX Property



More Examples



Example


Scroll inside a DIV to make it bigger/smaller:



function myFunction(event)
  var y = event.deltaY;
  var
currentSize = event.target.style.width;
  if (y > 0)
   
newSize = parseInt(currentSize) + 10;
  else
   
newSize = parseInt(currentSize) - 10;
 
 
event.target.style.width = newSize + "px";
  event.target.style.height
= newSize + "px";


Try it Yourself »



❮ DOM Events
❮ WheelEvent


Popular posts from this blog

𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

PHP code is not being executed, instead code shows on the page

Malaysia to Papua New Guinea by motorcycle?