jQuery动画位置百分比

jQuery动画位置百分比

本文介绍了jQuery动画位置百分比的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何确定百分比的排名?

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);
      });
    });

请提出建议.

推荐答案

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

添加引号. (我使用单引号,但是js不在乎它是'还是)

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

这篇关于jQuery动画位置百分比的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-06 05:06