对图片数量有限制吗?
研究了一下,改两处就可以了。
ImageSlide.js 17行
this.tigger && this.tigger.forEach(function(t, n) {
W(t).on("mouseover",
function() {
return e.stop(),
e.show(n),
!1
})
}),mouseover改为click
this.tigger && this.tigger.forEach(function(t, n) {
W(t).on("click",
function() {
return e.stop(),
e.show(n),
!1
})
}),同理,25行
this.dot && this.dot.forEach(function(t, n)
内留下click,注释掉mouseover就可以了
回复请问一下哈,怎么从鼠标经过触发改为点击触发呢?