1

嗨,我已经添加了功能(在 stackoverflow 上找到),一旦用户按住其中一个箭头键,我的 div 就会向左或向右移动。一切正常。

我想知道有没有办法阻止 div 在到达“结束”或移动一定数量的像素后停止移动。

我的代码如下

$(document).keydown(function(e) {
switch (e.which) {
case 37:
    $('#block').stop().animate({
        left: '-=50'
    }); //left arrow key
    break;

case 39:
    $('#block').stop().animate({
        left: '+=50'
    }); //right arrow key
    break;

}
})
4

2 回答 2

1

当然,看看这个小提琴:http: //jsfiddle.net/ArtBIT/V7qcK/

var KEY = {
    LEFT: 37,
    RIGHT: 39
}
var boundaries = {
    left: 0,
    right: 200
}
$(document).keydown(function(e) {
    var position = $('#block').position();

    switch (e.which) {
    case KEY.LEFT:

        $('#block').stop().animate({
            left: Math.max(boundaries.left, position.left - 50)
        }); 
        break;

    case KEY.RIGHT:
        $('#block').stop().animate({
            left: Math.min(boundaries.right, position.left + 50)
        });
        break;
    }
});​

或者这个http://jsfiddle.net/ArtBIT/8PWCR/1/用于 2D 运动

于 2012-08-15T13:41:05.937 回答
0

获取电流offset然后处理它:

var max = 1000;

$(document).keydown(function(e) {
    switch (e.which) {

        case 37:
            if($('#block').offset().left > 50)
            {
                $('#block').stop().animate({ left: '-=50' });
            }
            break;

        case 39:
            if($('#block').offset().left < (max - 50)
            {
                $('#block').stop().animate({ left: '+=50' });
            }
            break;

    }
});
于 2012-08-15T13:34:40.750 回答