实现:
<style>
.ft {
position: relative;
transform-style: preserve-3d;
width: 860px;
height: 860px;
margin: 50px auto;
transition: all 0.7s;
}
.ft:hover {
transform: rotateY(180deg);
}
.one,
.two {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 50%;
font-size: 70px;
font-weight: 700;
text-align: center;
background: url(http://pic36.photophoto.cn/20150715/0007020080742327_b.jpg) no-repeat;
background-position: -79px -93px;
line-height: 860px;
}
.one {
color: hotpink;
z-index: 1;
}
.two {
color: rgb(109, 173, 13);
transform: rotateY(180deg);
}
</style>
</head>
<body>
<div class="ft">
<div class="one">郭芷妘</div>
<div class="two">傅鸿杰</div>
</div>
</body>