还有比这更好的链接动画的方法吗?

发布于 2024-12-09 16:52:36 字数 496 浏览 1 评论 0原文

我觉得这不是最有效或最高效的做事方式:

    line.stop(true, true).show('slide', {direction: whichway}, speed-150, function() {
        title.stop(true, true).fadeIn(speed-200, function() {
            sub.stop(true, true).show('slide', {direction: whichway}, speed-50, function() {
                subtext.stop(true, true).show();
                paragraph.stop(true, true).slideDown(speed);
            });
        });
    });

哪种方式/速度是动态的,但除此之外,所有东西都必须同步和排队。有没有更有效的方法来做到这一点?

I feel like this isn't the most effective nor efficient way of doing things:

    line.stop(true, true).show('slide', {direction: whichway}, speed-150, function() {
        title.stop(true, true).fadeIn(speed-200, function() {
            sub.stop(true, true).show('slide', {direction: whichway}, speed-50, function() {
                subtext.stop(true, true).show();
                paragraph.stop(true, true).slideDown(speed);
            });
        });
    });

whichway/speed are dynamic, but other than that it's all stuff that has to be in sync and queued up. Is there a more efficient way of doing this?

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

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

发布评论

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

评论(1

无畏 2024-12-16 16:52:36

使用 case/switch 语句。像这样的事情:

function ani(step) {
    switch(step) {
        case 1:
            line.stop(true, true).show('slide', {direction: whichway}, speed-150, function() {ani(2)});
            break;
        case 2
             title.stop(true, true).fadeIn(speed-200, function() { ani(3)});
             break;


        ...

        default: ani(1)
    }
}

Use a case/switch statement. Something like this:

function ani(step) {
    switch(step) {
        case 1:
            line.stop(true, true).show('slide', {direction: whichway}, speed-150, function() {ani(2)});
            break;
        case 2
             title.stop(true, true).fadeIn(speed-200, function() { ani(3)});
             break;


        ...

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