jquery animate position in percentage

与世无争的帅哥 提交于 2020-01-01 02:10:37

问题


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 ")



来源:https://stackoverflow.com/questions/11015399/jquery-animate-position-in-percentage

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!