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

为什么第一次点左移或者回到原位后再点左移就会先左移一点然后停止不动宽度慢慢变小?

<!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>
        div{position:relative;
            width:80px;
      height:80px;
      border: solid 1px #ccc;
      margin: 10px 8px;
      background-color: Red;
      color:White;
      vertical-align:middle}
        </style>
        <script>
   $(function(){
    $("#btn1").bind("click",function(){
     $("div").animate({
     left:"-=50px"
     },3000
     )
    });
    $("#btn2").bind("click",function(){
     $("div").animate({
     left:"+=50px"
     },3000
     )
    });
   })
        </script>
    </head>
    
    <body>
        <div></div>
        <input id="btn1" type="button" value="左移" />
        <input id="btn2" type="button" value="右移" />
    </body>
</html>


正在回答

1 回答

因为你的盒子超过了网页的左边距,可以在style里为你的盒子写一个left:100px

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

我要吃冰激凌 提问者

到了最左边以后不应该继续往左直到完全消失吗
2016-03-24 回复 有任何疑惑可以回复我~
#2

52admln

回复 我要吃冰激凌 -=50px 是在原位置移动相应单位
2016-03-25 回复 有任何疑惑可以回复我~

举报

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

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

进入课程

为什么第一次点左移或者回到原位后再点左移就会先左移一点然后停止不动宽度慢慢变小?

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