Full Page History:

Oldest known version of this page was edited on 2005-11-15 06:11:02 by Jakub81 [unwikified title]

Page view:

Jakub81

Opera user from Poland.

My stuff

Autoscroll Powerbuttons

Use the buttons to scroll the page automatically. You may press the buttons multiple times to speed up the scrolling. Press escape to stop /slow down the scrolling. I will add the buttons to the PowerButtons soon.
Scroll

FastScroll

function AutoScroll()
{
	window.scrollBy(0,1);
	NextScroll = setTimeout('AutoScroll()', 480);
	window.onkeydown = StopScroll;
};

function StopScroll(e)
{
	if(e.keyCode == 27)
	{
		clearTimeout(NextScroll);
	};
};

AutoScroll();

Categories:

CategoryUsers