我不是 jQuery 的天才,想知道是否有人可以给我一个关于我正在使用的代码有什么问题的指针。滑块有效,但我需要通过按左右键转到下一张和上一张幻灯片。
这很可能是我忽略的一个明显错误。目前,当我按下一个键时没有任何反应。
jQuery
<script>
$(function() {
$('.slideshow').cycle({
fx:'scrollHorz',
easing:'easeInOutCirc',
speed:700,
timeout:5000,
pager:'.slideshow_wrapper .slideshow-paging'
});
$('.slideshow_wrapper').mouseenter(function(){
$('.slideshow').cycle('pause');
}).mouseleave(function(){
$('.slideshow').cycle('resume');
}).keyup(function(e) {
if(e.keycode == 37)
$('.slideshow').cycle('prev');
if(e.keycode == 39)
$('.slideshow').cycle('next');
})
});
</script>
HTML
<section id="gallery" class="slideshow_wrapper">
<div class="slideshow-paging"></div>
<div class="slideshow">
<article class="slideshow_item">
<div class='image'>
<a href='#'>
<img src='[URL HERE]' />
</a>
</div>
</article>
</div>