为了账号安全,请及时绑定邮箱和手机立即绑定

怎么解决再次单击回到原来的位置?

怎么解决再次单击回到原来的位置?

正在回答

2 回答

$(document).ready(function(){
    $('.car').hover(function(){
        $('.car').stop(true)
        .animate({top:'0px'},{duration:1000})
    },function(){
        $('.car').stop(true)
        .animate({top:'500px'},{duration:1000})
    })     
});


0 回复 有任何疑惑可以回复我~

$(function() {

    $('.car').click(function() {

        if ($('.car').offset().top == 0) {

            $('.car').animate({ top: '500px' }, { duration: 600 });

        } else{

            $('.car').animate({ top: '0px' }, { duration: 600 });

        }

    });

});


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

怎么解决再次单击回到原来的位置?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信