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

移动的问题?

<!DOCTYPE html>

<html>

    <head>

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

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

           

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

        <style type="text/css">

            div{

                 width:40px;

                 height:40px;

                 margin:10px;

                 left:100px;

                 border:2px solid;

                 background:blue;

                 position:absolute;

                }

           

        </style>

    </head>

    

    <body>

    

       <input type="button" value="左移" id="left"/>

       <input type="button" value="右移" id="right"/>

       <div></div>

       <span></span>

     <script type="text/javascript">

        $(function(){

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

                $("div").animate({

                    left:"+=50"

                },3000)

            });

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

                $("div").animate({

                    left:"-=50"

                },3000)

            });

        })  

       </script>

    </body>

</html>

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

                $("div").animate({

                    left:"-=50"

                },3000)

中为什么把“left”改成“right”右移的效果就没有了呢?求解答?谢谢!


正在回答

1 回答

因为你没有在CSS里设置初始的right值,你把CSS里的left改成right,第一次右移就生效了。但是左移之后右移就会失效的。因为在一个元素设置了top和left值之后,bottom和right就无效了。

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

newbeginning 提问者

非常感谢!
2016-04-10 回复 有任何疑惑可以回复我~

举报

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

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

进入课程

移动的问题?

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