1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
| var key_left = 37; var key_up = 38; var key_right = 39; var key_down = 40; var $switcher = $('#switcher'); $switcher.css('position', 'relative'); $(document).keyup(function(event){ switch(event.which){ case key_left: $switcher .animate({ left: '-=20px' },{ duration: 'fast' }) break; case key_up: $switcher .animate({ top: '-=20px' },{ duration: 'fast' }) break; case key_right: $switcher .animate({ left: '+=20px' },{ duration: 'fast' }) break; case key_down: $switcher .animate({ top: '+=20px' },{ duration: 'fast' }) } });
|