HTML :
<div class="start">
<div class="cube2">
<img src="../..//all-css/imgTest/4.jpg">
<img src="../..//all-css/imgTest/4.jpg">
<img src="../..//all-css/imgTest/4.jpg">
<img src="../..//all-css/imgTest/4.jpg">
</div>
CSS :
<style>
.start {
margin: 0;
padding: 0;
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.cube2 {
position: relative;
width: 360px;
height: 640px;
margin-top: 150px;
background: rgba(0, 0, 0, 0);
transform: rotate(-30deg) skew(25deg) scale(.8);
transition: 0.5s;
}
.cube2 img {
position: absolute;
width: 100%;
transition: 0.5s;
}
.cube2:hover img:nth-child(4) {
transform: translate(160px, -160px);
opacity: 1;
}
.cube2:hover img:nth-child(3) {
transform: translate(120px, -120px);
opacity: .8;
}
.cube2:hover img:nth-child(2) {
transform: translate(80px, -80px);
opacity: .6;
}
.cube2:hover img:nth-child(1) {
transform: translate(40px, -40px);
opacity: .4;
}
</style>
