I want to use up,down Key to Continue Scrolling i.e if I Press up then Scroll in upward direction or vise versa not one click
Example:
> http://jsfiddle.net/hazim/jLfdf2zh/
I want to use up,down Key to Continue Scrolling i.e if I Press up then Scroll in upward direction or vise versa not one click
Example:
> http://jsfiddle.net/hazim/jLfdf2zh/
Check out this fiddle: http://jsfiddle.net/jLfdf2zh/2/
//<![CDATA[
$(function () {
$('#button_up').fadeIn('slow');
$('#button_down').fadeIn('slow');
$('#button_down').click(
function (e) {
var posY = $('html').scrollTop();
posY += 300;
$('html').animate({
scrollTop: posY
}, 800);
});
$('#button_up').click(
function (e) {
var posY = $('html').scrollTop();
posY -= 300;
$('html').animate({
scrollTop: posY
}, 800);
});
});
//]]>
UPDATE