.fadeInit{animation: 1s fadeIn;}
.fadePiao{animation: 2s fadeRight;}
.show{animation: 2s show both;}
.right{animation: 2s right both;}
.left{animation: 2s left both;}
.bot{animation: 2s bot ;}
.xia{animation: 1s xia both;}
.xia2{animation: 1.5s xia both;}
.xia3{animation: 2s xia both;}
.xia4{animation: 2.5s xia both;}
.xia5{animation: 3s xia both;}
@keyframes xia{
	from{transform: translateY(50px); opacity: 0;}
	to{transform: translateY(0px); opacity: 1;}
}
@keyframes fadeIn{
	from{transform: translateY(-100px);}
	to{transform: translateY(0px);}
}
@keyframes fadeRight{
	from{transform: translateY(-50px) skew(10deg);}
	to{transform: translateY(0px) skew(0deg);}
}
@keyframes right{
	from{transform: translateX(100px); opacity: 0;}
	to{transform: translateX(0px); opacity: 1;}
}
@keyframes left{
	from{transform: translateX(-100px); opacity: 0;}
	to{transform: translateX(0px); opacity: 1;}
}
@keyframes bot{
	from{transform: translateY(50px); opacity: 0;}
	to{transform: translateY(0px); opacity: 1;}
}
@keyframes show{
	
	from{opacity: 0;}
	to{opacity: 1;}
}



.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
	opacity: 0;
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
	opacity: 1;
  }
}