gpt4 book ai didi

javascript - 如何在 Glide.js 中获取当前幻灯片编号

转载 作者:行者123 更新时间:2023-11-29 19:15:18 26 4
gpt4 key购买 nike

您好,当我在 GLide.js 中单击下一个和上一个按钮时,如何获取当前幻灯片编号 http://glide.jedrzejchalubek.com/docs.html#intro .

var carousel = $('#Carousel').glide({
type: 'carousel',
startAt: 1,
touchDistance: 2,
afterInit:function(){console.log("paintSlider")},
autoplay: 0
});
console.log(carousel.current());

最佳答案

由于某些原因,carousel.current() 函数无法正常工作。

您可以改用代码的回调和事件。示例:

var carousel = $('#Carousel').glide({
type: 'carousel',
...
afterTransition : function(event) {
console.log(event.index); // the current slide number
}
});

此外,carousel.index() 也可以!

关于javascript - 如何在 Glide.js 中获取当前幻灯片编号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35837556/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com