jquery animate position in percentage

2019-03-19 03:59发布

问题:

how do I determine the positions in percentages?

    $(document).ready(function(){
      $("#button").toggle(function(){
        $("#slide").animate({top:-100%},1000);
      },function(){
        $("#slide").animate({top:0%},1000);
      });
    });

Please suggest.

回答1:

$(document).ready(function(){
      $("#button").toggle(function(){
        $("#slide").animate({top:'-100%'},1000);
      },function(){
        $("#slide").animate({top:'0%'},1000);
      });
    });

Add quotes. (I used single quotes, but js doesn't care if it is ' or ")