我有以下代码块。我要做的就是在幻灯片放映中获取当前图像的src。它不起作用,尽管它改变了幻灯片,但控制台中根本没有出现任何内容。
HTML:
<div id="banner" class="owl-carousel">
<img src="template/banner-1.jpg" alt="">
<img src="template/banner-2.jpg" alt="">
<img src="template/banner-1.jpg" alt="">
<img src="template/banner-2.jpg" alt="">
</div>
jQuery的:
var owl = $(".owl-carousel");
owl.owlCarousel({
loop: true,
autoplay: true,
items: 1,
animateOut: 'fadeOut',
onChange: function (elem) {
var current = this.currentItem;
var src = elem.find(".owl-item").eq(current).find("img").attr('src');
console.log('Image current is ' + src);
}
});
答案 0 :(得分:20)
您的代码无效的原因是没有为Owl Carousel定义onChange回调。
请参阅标题回调下的http://owlgraphic.com/owlcarousel/#customizing以获取可用选项。
如果你更新它以使用&#34; afterMove&#34;移动幻灯片后它将正常工作。
您可能还想考虑使用&#34; afterAction&#34;根据您的要求在启动时启动,移动和更新。
JSvar owl = $(".owl-carousel");
owl.owlCarousel({
loop: true,
autoplay: true,
items: 1,
animateOut: 'fadeOut',
afterMove: function (elem) {
var current = this.currentItem;
var src = elem.find(".owl-item").eq(current).find("img").attr('src');
console.log('Image current is ' + src);
}
});
在进一步阅读评论中提供的链接以及owl carousel 2的文档后,这是一个使用owl carousel 2的工作示例。请参阅jsfiddle
与测试中的任何内容一样,github问题和答案可能很快就会过时。从owl carousel 2网站here
上的文档中找到解决方案 HTML<div id="banner" class="owl-carousel">
<img src="http://www.live-on-the-edge.com/wp-content/uploads/2014/06/Sam-Tomkins-730x547.jpg" alt=""/>
<img src="http://static.guim.co.uk/sys-images/Sport/Pix/pictures/2009/6/11/1244720277422/Aussie-Rugby-League-001.jpg" alt=""/>
<img src="http://static.guim.co.uk/sys-images/Sport/Pix/pictures/2010/1/7/1262873655905/Rugby-referee-001.jpg" alt=""/>
<img src="http://static.guim.co.uk/sys-images/Sport/Pix/columnists/2011/3/3/1299187263691/football-league-premier-l-007.jpg" alt=""/>
</div>
JS
var owl = $(".owl-carousel");
owl.owlCarousel({
loop: true,
autoplay: true,
items: 1,
animateOut: 'fadeOut'
});
// jQuery method on
owl.on('changed.owl.carousel',function(property){
var current = property.item.index;
var src = $(property.target).find(".owl-item").eq(current).find("img").attr('src');
console.log('Image current is ' + src);
});