* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
li {
list-style: none;
}
.homePage {
width: 800px;
height: 200px;
margin: 150px auto;
background-color: pink;
position: relative;
}
.homePage>ul {
width: 100%;
height: 100%;
}
.homePage>ul>li {
width: 200px;
height: 100%;
float: left;
transform-style: preserve-3d;
position: relative;
transition: all 1s;
}
.homePage>ul>li>span {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.homePage>ul>li>span:nth-child(1) {
background-image: url(../images/bxqy.jpg);
transform: translateZ(100px);
}
.homePage>ul>li>span:nth-child(2) {
background-image: url(../images/fczlm.jpg);
transform: rotateX(90deg) translateZ(100px);
}
.homePage>ul>li>span:nth-child(3) {
background-image: url(../images/hfh.jpg);
transform: rotateX(180deg) translateZ(100px);
}
.homePage>ul>li>span:nth-child(4) {
background-image: url(../images/ss.jpg);
transform: rotateX(270deg) translateZ(100px);
}
.homePage>ul>li:nth-child(2) span {
background-position: -200px 0;
}
.homePage>ul>li:nth-child(3) span {
background-position: -400px 0;
}
.homePage>ul>li:nth-child(4) span {
background-position: -600px 0;
}
a {
position: absolute;
width: 30px;
height: 70px;
background-color: rgba(0,0,0,.2);
text-decoration: none;
color: #fff;
top: 50%;
margin-top: -35px;
line-height: 70px;
text-align: center;
display: none;
}
.right {
right: 0;
}