jQuery Move div with arrow keys

后端 未结 1 1081
一生所求
一生所求 2020-12-17 03:40

I\'m trying to move a div using the arrow keys. I have the following code which is not working for me. Do you see anything wrong with it. Check jsfiddle at http://js

相关标签:
1条回答
  • 2020-12-17 03:56

    There are two things you need to do:

    1. Your <div> needs position: absolute or your top and left properties won't do anything.
    2. jQuery doesn't know what '-= 10' means but it does understand '-=10'. You might want to go all the way to '-=10px' as that's more common but the px isn't necessary.

    Updated fiddle: http://jsfiddle.net/ambiguous/N5Ltt/2/

    You're seeing the animation stop when you hold down an arrow key because you call .stop on each keydown and that stops the animation. The animation works using a timer and .stop stops the timer; if the keyboard's repeat rate is faster than the first iteration of the timer then no animation happens when you hold down an arrow key. You're only moving by 10px at a time so you could just do a straight non-animated move by 10px using .css:

    $div.css('left', $div.offset().left - 10);
    

    Non-animated version: http://jsfiddle.net/ambiguous/N5Ltt/3/

    0 讨论(0)
提交回复
热议问题