gpt4 book ai didi

javascript - jQuery 滚动幻灯片

转载 作者:行者123 更新时间:2023-11-28 09:54:27 25 4
gpt4 key购买 nike

我目前正在从头开始创建滚动幻灯片,但遇到了问题。

当我多次按下一张按钮时,幻灯片开始一起运行,如何确保下一张幻灯片等到当前幻灯片停止后再开始下一张幻灯片。

    var scrollAmount=910
var image0Left=-scrollAmount;
var image1Left=0;
var image2Left=scrollAmount;
var scrollSpeed0=2000;
var scrollSpeed1=2000;
var scrollSpeed2=2000;
$(document).ready(function() {
$("#left-arrow").click(showPreviousSlide);
$("#right-arrow").click(showNextSlide);
});

function showPreviousSlide(){
image0Left+=scrollAmount;
if(image0Left > scrollAmount){
image0Left=-scrollAmount;
scrollSpeed0=0;
}

image1Left+=scrollAmount;
if(image1Left > scrollAmount){
image1Left=-scrollAmount;
scrollSpeed1=0;
}

image2Left+=scrollAmount;
if(image2Left > scrollAmount){
image2Left=-scrollAmount;
scrollSpeed2=0;
}

$("#slide0").animate({left: image0Left}, scrollSpeed0);
scrollSpeed0=2000;
$("#slide1").animate({left: image1Left}, scrollSpeed1);
scrollSpeed1=2000;
$("#slide2").animate({left: image2Left}, scrollSpeed2);
scrollSpeed2=2000;
}

function showNextSlide() {
image0Left-=scrollAmount;
if(image0Left < -scrollAmount){
image0Left=scrollAmount;
scrollSpeed0=0;
}

image1Left-=scrollAmount;
if(image1Left < -scrollAmount){
image1Left=scrollAmount;
scrollSpeed1=0;
}

image2Left-=scrollAmount;
if(image2Left < -scrollAmount){
image2Left=scrollAmount;
scrollSpeed2=0;
}


$("#slide0").animate({left: image0Left}, scrollSpeed0);
scrollSpeed0=2000;
$("#slide1").animate({left: image1Left}, scrollSpeed1);
scrollSpeed1=2000;
$("#slide2").animate({left: image2Left}, scrollSpeed2);
scrollSpeed2=2000;
}

这就是所有控制脚本代码。这是实际网站的链接。 Site

每次调用 showPreviousSlide 或 showNextSlide 时,都会移动三个图像幻灯片。如何确保 showPreviousSlide/showNextSlide 函数的一次迭代在再次调用之前完成移动幻灯片?我删除了幻灯片 div overfill:hidden,以便更轻松地查看幻灯片上发生的情况。

感谢您的帮助。

摩根

最佳答案

您可以将完成回调传递给 .animate(),如下所示:

animationCompleted = false;
$("#slide0").animate({left: image0Left}, scrollSpeed0, function() {
animationCompleted = true;
});

然后检查函数中 animationCompleted 的值:

function showPreviousSlide(){
if (!animationCompleted) return;
// ...
}

并查看docs了解更多信息和示例。

关于javascript - jQuery 滚动幻灯片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10291644/

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