翻转的css3样式

#edit{

position:absolute;

300px;

height:200px;

border:2px solid red;

left:50%;

top:50%;

margin-left:-150px;

margin-top:-100px;

-webkit-transition: all 0.5s ease-in-out;

-webkit-transform: perspective(600px) rotateY(0deg);

}

#edit:hover{

-webkit-transform: perspective(600px) rotateY(-180deg);

}


原文地址:https://www.cnblogs.com/danghuijian/p/4400008.html