$(document).ready(function(){
   $(".blocli").hover(function(){
      $(this).find(".affiche").animate({top: 20});
   },function(){
      $(this).find(".affiche").animate({top: 80});
   });
});