0

更新:我已经合并了我的代码并尝试添加 if/else 语句。我还没有弄清楚如何点击忽略 mouseenter/mouseleave 功能

$('#storybtn').on({
mouseenter:function(){
    $('#story')
        .stop()
        .animate({top:'405px'},'slow');
},
mouseleave:function(){
    $('#story')
        .stop()
        .animate({top:'435px'},'slow');
},
click:function(){
    var position = $('#story').css('top');
    if (position>'10px'){
    $('#story')
        .stop()
        .animate({top:'10px'},'slow');
        }
    else (position='10px'){
    $('#story')
        .stop()
        .animate({top:'435px'},'slow');
        }
    }
});
4

2 回答 2

1

.hover()首先,较新版本的 jQuery 不推荐使用您的 for 语法。其次,您需要在激活新动画之前停止其他动画,否则它只会排队等待之前的动画完成。试试这个:

$('#storybtn').on({
    mouseenter:function(){
        $('#story')
            .stop()
            .animate({top:'405px'},'slow');
    },
    mouseleave:function(){
        $('#story')
            .stop()
            .animate({top:'435px'},'slow');
    },
    click:function(){
        $('#story')
            .stop()
            .animate({top:'10px'},'slow');
    }
});

这利用了.on().click()处理程序,它是.hover()简写形式。通过使用真实的东西,您可以整合您的代码。

于 2013-03-22T19:51:32.807 回答
1

我为您创建了一个示例小提琴:

示例小提琴

为了避免单击发生后的鼠标离开动画,我在#story 和 if/else 案例中添加了一个类单击以检查它或在鼠标离开后将其删除:

 $('#storybtn').on({
        mouseenter: function () {
            $('#story')
                .stop()
                .animate({top: '405px'}, 'slow');
        },
        mouseleave: function () {
            if (!$('#story').hasClass('clicked')) {
            $('#story')
                .stop()
                .animate({top: '435px'}, 'slow');
            } else {
                $('#story').removeClass('clicked')
            }
        },
        click: function () {
            var position = $('#story').css('top');
            if (position > '10px') {
                $('#story')
                    .addClass('clicked')
                    .stop()
                    .animate({top: '10px'}, 'slow');
            } else if (position === '10px') {
                $('#story')
                    .addClass('clicked')
                    .stop()
                    .animate({top: '435px'}, 'slow');
            }
        }
    });
于 2013-03-22T22:43:14.220 回答