Jquery缓动效果

发布于 2024-12-31 22:22:19 字数 433 浏览 0 评论 0原文

在过去的几个小时里,我一直在尝试对 我之前的问题(代码此处),但全部徒然。

它根本不起作用。我想做的是使示例以相同的方式工作,但向其中添加 easeOutBack ,这样如果我将鼠标悬停在文本上,它将以 easeOutBack 开头直到下一个文本出现为止。当我将鼠标悬停在文本上时,会再次发生 easeOutBack 效果。

知道该怎么做吗?

I've been trying over the last few hours to implement a jQuery easing effect to my previous question (code here), but all in vain.

It didn't work at all. What I'm trying to do is make the example work the same way, but add easeOutBack to it so that if I hovered on the text, it would begin with the easeOutBack effect until the next text shows up. And again easeOutBack effect would happen when I unhover the text.

Any idea how to do that?

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

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

发布评论

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

评论(1

×眷恋的温暖 2025-01-07 22:22:19

这个怎么样 - http://jsfiddle.net/ZhUx8/1/

jQuery(function($) {

    $('.topnav li').find('a[href]').parent().each(function() {
        var li   = $(this),
            a    = li.find('a'),
            div = $('<div>' + '<\/div>');

        li.hover(function() {
            a.stop().animate({marginTop: '-64'}, 500, "easeInOutBack");
        },
        function() {
            a.stop().animate({marginTop: '0'}, 500, "easeInOutBack");
        })
        .append(span);
    });

});

确保将其添加到您的 head 标签中。

<script src="http://gsgd.co.uk/sandbox/jquery/easing/jquery.easing.1.3.js" type="text/javascript" ></script>

what about this - http://jsfiddle.net/ZhUx8/1/.

jQuery(function($) {

    $('.topnav li').find('a[href]').parent().each(function() {
        var li   = $(this),
            a    = li.find('a'),
            div = $('<div>' + '<\/div>');

        li.hover(function() {
            a.stop().animate({marginTop: '-64'}, 500, "easeInOutBack");
        },
        function() {
            a.stop().animate({marginTop: '0'}, 500, "easeInOutBack");
        })
        .append(span);
    });

});

make sure to ad this to your head tag.

<script src="http://gsgd.co.uk/sandbox/jquery/easing/jquery.easing.1.3.js" type="text/javascript" ></script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文