今天美女图片站新增上下翻页,和左右翻页功能,用户可以方便的浏览图片。为了能够让用户操作方便,一直在对网站进行优化。
$(document).keydown( function (e) { if (e.keyCode == 38) { //按了上箭头 var top = $(document).scrollTop(); $('html, body').animate({ scrollTop : (top - 500)}, 'fast'); } else if (e.keyCode == 40) { //按了下箭头 var top = $(document).scrollTop(); $('html, body').animate({ scrollTop : (top + 500)}, 'fast'); } else if (e.keyCode == 37) { //按了左箭头 //code $(".prev").trigger("click"); }else if (e.keyCode == 39) { //按了右箭头 //code } });