.front,
.back {
position: absolute;
transition: 0.5s;
}
.item:hover .front {
top: -50%;
}
.item:hover .back {
top: 50%;
opacity: 1;
}
.front,
.back {
position: absolute;
top: 0;
transition: 0.5s;
}
이렇게 top 속성을 주어야한다. 동일한 속성이 존재해야 transition 속성이 적용된다!