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
There are two things you need to do:
<div>
needs position: absolute
or your top and left properties won't do anything.'-= 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/