Klaus Hartl schrieb:
> you can see it in action (and the difference) here now, just click on a 
> thumbnail in the pictures section or in photos nearby and scroll the page...
>   
Very nice. The fixed center position allows much smoother scrolling :-)
One small proposal: For better keyboard navigation, add arrow keys like 
this:
$(document).keyup( function(e){ var key = e.keyCode; if(key == 188 || 
key == 37 || key == 38){goPrev()} });
$(document).keyup( function(e){ var key = e.keyCode; if(key == 190 || 
key == 39 || key == 40){goNext()} });

Then you can go next by pressing right or down, and go to previous by 
pressing left or up. Much more intuitive then ',' and '.'.

-- Jörn

_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to