.frame {
  height:100%;
  width:100%;
  overflow:hidden;
}

.zoomin img {
  /*height:200px;*/
  /*width:200px;*/
  -webkit-transition:all .2s ease;
  -moz-transition:all .2s ease;
  -ms-transition:all .2s ease;
  transition:all .2s ease;
}

.item:hover .zoomin.frame img {
  opacity:1;
}

.zoomin img:hover {
  width:100%;
  height:100px;
  transform:scale(1.5);
  -ms-transform:scale(1.5);
  opacity:1;
  -webkit-transition:scale(1.5);
}

