AnythingSlider 具有淡入淡出效果

发布于 2024-09-16 03:48:22 字数 95 浏览 4 评论 0原文

我正在使用 Chris Coyier 的 everythingSlider。

谁能告诉我如何从幻灯片效果更改为淡入淡出效果吗?

遗憾的是, 绍洛

I'm using the anythingSlider by Chris Coyier.

Can anyone tell how to change from slide effect to fade effect?

Regrets,
Saulo

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

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

发布评论

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

评论(1

站稳脚跟 2024-09-23 03:48:22

好吧,由于核心此时(v1.5.6.1),所以不可能淡入淡出过渡中两张幻灯片之间的过渡,但您可以使用 FX 扩展来淡入下一张图像。尝试这样的操作:

$('#slider')
    .anythingSlider({
        animationTime : 0
    })
    .anythingSliderFx({
        inFx: {
            'img' : { opacity: 1, duration: 500 }
        },
        outFx: {
            'img' : { opacity: 0, duration: 0 }
        }

将“animationTIME”和 outFx 时间设置为零将确保看不到前一个图像(不滑动),但 inFx (fadeIn) 将位于透明背景上。我不知道这是否能满足您的需求。

Well, as the core is at this time (v1.5.6.1), it isn't possible to transition between the two slides in a fade transition, but you can use the FX extension to fade in the next image. Try something like this:

$('#slider')
    .anythingSlider({
        animationTime : 0
    })
    .anythingSliderFx({
        inFx: {
            'img' : { opacity: 1, duration: 500 }
        },
        outFx: {
            'img' : { opacity: 0, duration: 0 }
        }

Setting "animationTIme" and the outFx time to zero will ensure the previous image isn't seen (no sliding), but the inFx (fadeIn) will be on a transparent background. I don't know if that will fullfill your needs.

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