jQuery .animate(),切换问题

发布于 2024-12-03 04:04:22 字数 236 浏览 1 评论 0原文

我对 js 比较陌生,我正在尝试在我的投资组合中实现一个简单的 .animate() 功能。正如你所看到的这里,使用我编写的代码,名为ribbon的div完美地向下滑动,但看起来忽略脚本的“else”部分。

我知道我可能犯了一个愚蠢的错误,但目前我似乎无法想出更好的办法!

抱歉我的英语不好,做意大利人很糟糕。

I'm relatively new to js and I'm trying to implement a simple .animate() feature in my portfolio. As you can see here, with the code I wrote the div called ribbon slides down perfectly, but it seems to ignore the "else" part of the script.

I know I'm probably doing a dumb mistake, but I can't seem to be able to work out anything better at the moment!

Sorry for my bad english, sucks to be Italian.

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

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

发布评论

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

评论(2

星星的轨迹 2024-12-10 04:04:22

刚刚在一分钟前为另一个类似的问题想出了一个解决方案。

http://jsfiddle.net/HF5A5/

基本上,您将该值乘以 1 或 -1,然后切换该值价值。

$(document).ready(function() {
    var direction = -1;
    $('#toggle').click(function() {
            direction -= direction * 2;
            $('#ribbon').animate({
                marginTop: "+=" + direction * 300 + "px"
            }, 1700);
            return false;
    });
});

或者更好: http://jsfiddle.net/HF5A5/1/

$(document).ready(function() {
    var direction = 1;
    $('#toggle').click(function() {
            $('#ribbon').animate({
                marginTop: "+=" + direction * 300 + "px"
            }, 1700, function(){
                $(this).stop();
                direction -= direction * 2;
            });
            return false;
    });
});

Just came up with a solution for another one like this a minute ago.

http://jsfiddle.net/HF5A5/

Basically you multiply the value by 1 or -1 and then toggle that value.

$(document).ready(function() {
    var direction = -1;
    $('#toggle').click(function() {
            direction -= direction * 2;
            $('#ribbon').animate({
                marginTop: "+=" + direction * 300 + "px"
            }, 1700);
            return false;
    });
});

or better yet: http://jsfiddle.net/HF5A5/1/

$(document).ready(function() {
    var direction = 1;
    $('#toggle').click(function() {
            $('#ribbon').animate({
                marginTop: "+=" + direction * 300 + "px"
            }, 1700, function(){
                $(this).stop();
                direction -= direction * 2;
            });
            return false;
    });
});
遮了一弯 2024-12-10 04:04:22

只需将您拥有的内容,只需将 if 放入 click 事件中即可。

http://jsfiddle.net/Rkqge/12/

$(document).ready(function() {
  $('#toggle').click(function() {
    if ($('#ribbon').css("margin-top") == "-300px") {
        $('#ribbon').animate({
            marginTop: "0px"
        }, 1700);
    } else {
        $('#ribbon').animate({
            marginTop: "-300px"
        }, 1700);
    }
 });
});

Just taking what you had, simply put the if inside the click event.

http://jsfiddle.net/Rkqge/12/

$(document).ready(function() {
  $('#toggle').click(function() {
    if ($('#ribbon').css("margin-top") == "-300px") {
        $('#ribbon').animate({
            marginTop: "0px"
        }, 1700);
    } else {
        $('#ribbon').animate({
            marginTop: "-300px"
        }, 1700);
    }
 });
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文