jQuery - with keydown event animate your elements!

 $(document).ready(function(){  
   $(document).keydown(function(){  
     $('div').animate({left:'+=10px'},500);    
   });    
 });  

No comments:

Post a Comment