当前脚本工作正常,但我需要使用左箭头转到上一张图像,使用右箭头转到下一张。
<script type="text/javascript">
var $images;
var goNext = function() {
var $this = $(this),
$next = $this.next('img').length > 0 ? $this.next('img') : $this.siblings('img').eq(0);
$this.hide();
$next.show();
return false;
};
$(document).ready(function(){
$images = $('.images img');
$images.eq(0).siblings().hide();
$images.on('click', goNext);
});
</script>
如何使用以下内容来控制图像滑入和滑出?
$("body").keydown(function(e) {
if(e.keyCode == 37) { // left
}
});
如果我想使用左箭头返回,我需要做什么?