![]() |
2008-04-11
, 16:41
|
|
Posts: 4,930 |
Thanked: 2,272 times |
Joined on Oct 2007
|
#2
|
function startSpeedTracking(e) { stopScroll(); oldY = e.pageY; tintv = setInterval(speedTracker, 50); } function speedTracker() { //Somehow get current coords? Stuffing the new y in newY... velocity = (newY - oldY)/50; oldY = newY; } function startScroll(e) { clearInterval(tintv); if(velocity > 0){ direction = -1; }else{ direction = 1; } velocity = Math.abs(velocity); //Rest of stuff unchanged... //Maybe threshold off velocity, instead of time? }
![]() |
2008-04-11
, 16:51
|
|
Posts: 4,930 |
Thanked: 2,272 times |
Joined on Oct 2007
|
#3
|
![]() |
2008-04-11
, 17:01
|
|
Posts: 4,708 |
Thanked: 4,649 times |
Joined on Oct 2007
@ Bulgaria
|
#4
|
<body onmousemove="console.log(event.screenX)">
The Following User Says Thank You to Bundyo For This Useful Post: | ||
![]() |
2008-04-11
, 17:23
|
|
Posts: 4,930 |
Thanked: 2,272 times |
Joined on Oct 2007
|
#5
|
![]() |
2008-04-11
, 17:26
|
Posts: 17 |
Thanked: 10 times |
Joined on Mar 2008
@ Guatemala City, Guatemala
|
#6
|
![]() |
2008-04-11
, 17:27
|
|
Posts: 4,708 |
Thanked: 4,649 times |
Joined on Oct 2007
@ Bulgaria
|
#7
|
![]() |
2008-04-11
, 17:59
|
|
Posts: 4,930 |
Thanked: 2,272 times |
Joined on Oct 2007
|
#8
|
![]() |
2008-04-11
, 18:33
|
|
Posts: 4,708 |
Thanked: 4,649 times |
Joined on Oct 2007
@ Bulgaria
|
#9
|
Here is a rough Greasemonkey script I've written for 'kinetic' scrolling for MicroB. It needs some tweaking, but it works! Let me know what you think.
-Broc
Last edited by binauralbeat; 2008-04-11 at 16:18.