Puoi ancora abbreviare così
codice:
$('.Item').mouseenter(function(){
    $(this).css("background", "rgba(255, 255, 255, 0.3 )");
});


$('.Item').mouseleave(function(){
    $(this).css("background", "black");
});