【发布时间】:2018-02-21 08:21:07
【问题描述】:
我正在使用 owl carousel 作为缩略图查看器,并尝试向“owl-item”添加一个活动类。我已经按照 owl carousel 文档尝试了 afterAction 和 afterInit,它们都在第一个项目中添加了一个活动类,但在选择其他项目时都没有。
owldemo.owlCarousel({
items : 4,
responsive:false,
pagination: false,
navigation: true,
afterAction: function(el){
//afterinit: function(el)//same results
this
.$owlItems
.removeClass('active')
this
.$owlItems
.eq(this.currentItem)
.addClass('active')
}
});
【问题讨论】:
-
如果没有完整的 HTML 代码来重现问题,我无法给出答案。你看过这个演示吗? owlgraphic.com/owlcarousel/demos/click.html
标签: jquery owl-carousel