



// 鼠标hover事件文字内容滑动遮罩效果

$(function(){



  $(".view").hide();

  $(".pr_r ul li").hover(function(){



    $(this).find(".view").show().stop().animate({top:"0px",padding:"20px"},400);



    // $(this).find(".view span").show();

    // $(this).find(".view p").hide();

    // $(this).find(".view a").show();

    $(this).find(".tit").hide();



  },function(){

    $(this).find(".view").stop().animate({top:"-100%",padding:"-20px"},400);



    // $(this).find(".view span").hide();

    // $(this).find(".view p").show();

    // $(this).find(".view a").hide();

    $(this).find(".tit").show();



  });

});





// 鼠标hov