.view {
	width: 208px;
	height: 157px;
	margin-left:5px;
	margin-right:5px;
	margin-bottom:8px;
	overflow: hidden;
	position: relative;
	text-align: center;
	cursor: default;
	background-color:#fff;
}

.view .mask,.view .content {
	width: 208px;
	height: 157px;
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
}

.view img {
	display: block;
	position: relative;
}

.view-tenth img {
   -webkit-transform: scaley(1);
   -moz-transform: scaley(1);
   -o-transform: scaley(1);
   -ms-transform: scaley(1);
   transform: scaley(1);
   -webkit-transition: all 0.7s ease-in-out;
   -moz-transition: all 0.7s ease-in-out;
   -o-transition: all 0.7s ease-in-out;
   -ms-transition: all 0.7s ease-in-out;
   transition: all 0.7s ease-in-out;
}
.view-tenth .mask {
   background-color: #434646;
   -webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
   -o-transition: all 0.5s linear;
   -ms-transition: all 0.5s linear;
   transition: all 0.5s linear;
   -ms-filter: "progid: dximagetransform.microsoft.alpha(opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
}
.view-tenth h2 {
   background: transparent;
   margin: 50px 40px 0px 40px;
   -webkit-transform: scale(0);
   -moz-transform: scale(0);
   -o-transform: scale(0);
   -ms-transform: scale(0);
   transform: scale(0);
   color: #fff;
   -webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
   -o-transition: all 0.5s linear;
   -ms-transition: all 0.5s linear;
   transition: all 0.5s linear;
   -ms-filter: "progid: dximagetransform.microsoft.alpha(opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
}

.view-tenth:hover img {
   -webkit-transform: scale(10);
   -moz-transform: scale(10);
   -o-transform: scale(10);
   -ms-transform: scale(10);
   transform: scale(10);
   -ms-filter: "progid: dximagetransform.microsoft.alpha(opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
}
.view-tenth:hover .mask {
   -ms-filter: "progid: dximagetransform.microsoft.alpha(opacity=100)";
   filter: alpha(opacity=100);
   opacity: 1;
}
.view-tenth:hover h2 {
   -webkit-transform: scale(1);
   -moz-transform: scale(1);
   -o-transform: scale(1);
   -ms-transform: scale(1);
   transform: scale(1);
   -ms-filter: "progid: dximagetransform.microsoft.alpha(opacity=100)";
   filter: alpha(opacity=100);
   opacity: 1;
}