views:

35

answers:

1

Recently i've seen lots of modern web pages that can be scrolled using the arrow keys, like this one: http://www.thinkingforaliving.org/topics/curated I think they use jQuery (is not flash). Does anyone knows a good jQuery plugin (or other library) that does this?

+2  A: 

I'm a fan of the jQuery hotkeys plugin. Just capture the up and down and/or left and right and use jQuery methods like .scrollTo() for the desired effect.

Jake Wharton