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

为什么animate()right参数不生效?


<pre><!DOCTYPE html>

<html>

    <head>

        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

        <title>jQuery动画特效</title>

        <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>

         <style type="text/css">

    #a{

       width: 70px;

       height: 70px;

       

       left:150px;

       position:relative;

       border: solid 1px #ccc;

       background-color:#f44444;

        }

    #b

    {

       width: 70px;

       height: 70px;

       top:100px;

       position:absolute;

       border: solid 1px #ccc;

       background-color:red;

        }

</style>

    </head>

    

    <body>

    <div id="a">

    <div id="b"></div></div>

    <script type="text/javascript">

    $("body").append("<input id='left' type='button' value='左移' />");

    $("body").append(" <input id='right' type='button' value='右移' />");

   $("#left").bind("click",function(){

       $("#a").animate({

           left:"+=50px"

           },1000,function(){

           $("#b").animate().html("左移完成!")

       });

   });

   $("#right").bind("click",function(){

       $("#a").animate({

           left:"-=50px"

       },1000,function(){

           $("#b").animate().html("右移完成!")

       });

   });

    </script>

    </body>

</html>

</pre>

正在回答

3 回答

  你可以试试只写righ看看是不是和只写left一样产生效果,如果产生效果,那证明,控制方向的移动,只能写一种形式,要么left要么right,如果right不产生效果,那证明animate()只能由left控制。

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

绝对定位的时候,你写左右两个方向,是没有效果的

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

浪人_J 提问者

不,我换了left 可以运行的。
2015-03-18 回复 有任何疑惑可以回复我~

position:absolute  因为CSS中有这个属性

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

举报

0/150
提交
取消
jQuery基础课程
  • 参与学习       154768    人
  • 解答问题       7184    个

加入课程学习,有效提高前端开发速度

进入课程

为什么animate()right参数不生效?

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