所以我有一个gif并希望能够连续播放,而我按住一个键来移动我怎样才能在JavaScript / jQuery中执行此操作?
这就是我现在拥有的:$( document ).ready(function(){
$( document ).keydown(function(key) {
switch(parseInt(key.which,10)) {
// Left arrow key pressed
case 37:
$('img').animate({left: "-=50px"}, 'fast');
$('img').attr('src','http://i.imgur.com/IvR83ue.gif');
break;