是否有一个 jQuery 幻灯片插件可以让我设置单个图像的时间?

发布于 2024-09-16 22:24:02 字数 122 浏览 5 评论 0原文

我想知道是否有一个预先构建的 jQuery 幻灯片,可以让我在某些图像上设置比其他图像更长的暂停。

我有括号内的照片,希望从深色照片淡入中等曝光。我认为它看起来会很时髦。

干杯,

I would like to know if there is a prebuilt slideshow for jQuery that will allow me to set longer a longer pause on some images than others.

I have bracketed photos and would like to fade through from the dark one to the medium exposed on. I think it will look groovy.

Cheers,

Ben

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暗地喜欢 2024-09-23 22:24:02

我通过在一个内部有两个 setTimeout 调用的函数上调用 setInverval 解决了这个问题。

function doubleSlide() {
    setTimeout("switchSlide()",500);
    setTimeout("switchSlide()",2000);
}

setInterval("doubleSlide()", 2000);

结果是一张幻灯片显示 500 毫秒,下一张幻灯片显示 1500 毫秒。

I solved this by calling setInverval on a function with two setTimeout calls inside it.

function doubleSlide() {
    setTimeout("switchSlide()",500);
    setTimeout("switchSlide()",2000);
}

setInterval("doubleSlide()", 2000);

The result is one slide displaying for 500 milliseconds and the next displaying for 1500 milliseconds.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文