ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
~~~ <style> .parent{ border:1px solid #333; width:200px; height:300px; padding:10px; } .parent>div{ width:200px; height:300px; background-size: cover; backface-visibility: hidden; position:absolute; transition: all 3s; } .front{ z-index: 100; background:url("images/01.png"); } .back{ background:url("images/02.png"); transform: rotateY(-180deg) } .parent:hover .front{ transform: rotateY(180deg); } .parent:hover .back{ transform: rotateY(0deg); } </style> </head> <body> <div class="parent"> <div class="front"> </div> <div class="back"> </div> </div> </body> ~~~ ![](https://box.kancloud.cn/3ed60f04e53997a23b68a863ccbccfa3_234x344.gif)