我最近做了这个教程: http: //fearlessflyer.com/2010/08/how-to-create-your-own-jquery-content-slider/我想知道是否有人知道我可以如何使用本教程中的代码但是将其更改为在单击文本时自动滚动浏览图像而不是滚动浏览。
检查鼠标“单击”事件后滚动图像的代码是:
$(theImage).each(
function(intIndex){
$(this).nextAll('a')
.bind("click", function(){
if($(this).is(".next")) {
$(this).parent('li').parent('ul').animate({
"margin-left": (-(intIndex + 1) * theWidth)
}, 1000)
} else if($(this).is(".previous")){
$(this).parent('li').parent('ul').animate({
"margin-left": (-(intIndex - 1) * theWidth)
}, 1000)
} else if($(this).is(".startover")){
$(this).parent('li').parent('ul').animate({
"margin-left": (0)
}, 1000)
}
});//close .bind()
});//close .each()
该声明:
.bind("click", function(){...
检查鼠标“单击”事件,然后执行 if 语句。我想改为只运行 if 语句而无需先单击。任何帮助将不胜感激,谢谢。