.animate({'marginLeft':})按照放大和缩小的方式进行操作

时间:2013-06-27 12:29:51

标签: jquery-mobile cordova

我在屏幕上有一个图像,覆盖了80%的屏幕。

我想在按下按钮时左右移动它。我想这样做

$("#movebtn").swiperight(function() {
        $('#moveimage').animate({
           'marginLeft' : "+=2px"
                    });
                });

            $("#movebtn").swipeleft(function() {
        $('#moveimage').animate({
           'marginLeft' : "-=2px"
                    });
                });

但是当我按下按钮而不是向左/向右移动时,图像会放大和缩小。 我在做什么错误?

感谢:)

1 个答案:

答案 0 :(得分:0)

尝试使用margin-left而不是marginLeft