Closed Thread Icon

Topic awaiting preservation: Mouse events Pages that link to <a href="https://ozoneasylum.com/backlink?for=7975" title="Pages that link to Topic awaiting preservation: Mouse events" rel="nofollow" >Topic awaiting preservation: Mouse events\

 
Author Thread
Osaires
Paranoid (IV) Inmate

From: oslo, Norway
Insane since: Aug 2001

posted posted 12-09-2001 02:27

I'm no master inn English, but i thing this is the right word "mouse wheele".
anyway is it posible to use the mouse wheele in a javascript?



Bugimus
Maniac (V) Mad Scientist

From: New California
Insane since: Mar 2000

posted posted 12-09-2001 02:59

Yes. IE6 only.
http://www.ozoneasylum.com/Forum2/HTML/000996.html

Slime
Lunatic (VI) Mad Scientist

From: Massachusetts, USA
Insane since: Mar 2000

posted posted 12-09-2001 05:32

No offense to anyone, but I'm finding the various spellings of the word "wheel" in this thread and the one linked to very interesting. =)

Sash
Paranoid (IV) Inmate

From: Canada, Toronto
Insane since: May 2000

posted posted 12-09-2001 07:04

Osaires, Babylon is your friend.

Bugimus
Maniac (V) Mad Scientist

From: New California
Insane since: Mar 2000

posted posted 12-09-2001 07:27

"A wheel by any other name would roll as well." --Wheeliam Shakespeare

mr.maX
Maniac (V) Mad Scientist

From: Belgrade, Serbia
Insane since: Sep 2000

posted posted 12-09-2001 12:38

JS Example:

function wheelHandler() {
&nbsp;&nbsp;&nbsp;&nbsp;if (event.wheelDelta >= 120) {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// wheel UP
&nbsp;&nbsp;&nbsp;&nbsp;} else
&nbsp;&nbsp;&nbsp;&nbsp;if (event.wheelDelta <= -120) {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// wheel DOWN
&nbsp;&nbsp;&nbsp;&nbsp;}
}

document.onmousewheel = wheelHandler;


« BackwardsOnwards »

Show Forum Drop Down Menu