问答详情
源自:1-3 挑战实战题

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

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

提问者:野生前端菜鸟 2016-12-04 18:24

个回答

  • 阳光明媚的早晨我迟到了
    2016-12-19 09:31:05
    已采纳

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


  • 慕用2771484
    2017-01-23 14:15:19

    $(function() {

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

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

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

            } else{

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

            }

        });

    });