animation d'image jQuery

$("button").click(function(){
  $("img").animate({
    left: '250px',
    opacity: '0.5',
    height: '150px',
    width: '150px'
  });
}); 
Noob Learner