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

There are 48 comments on this page. [Display and/or add comments]