企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
~~~ <style> .container{ width: 300px; height: 300px;; margin:100px auto; position: relative; } .container>div{ transition: all 2s; position: absolute; height: 300px; width:300px; backface-visibility: hidden; } .front{ background: plum; animation: toback 2s infinite;/*自动重复动画 */ } /* .back{ transform: rotateY(-180deg); } .container:hover .front{ transform: rotateY(180deg); } .container:hover .back{ transform: rotateY(0deg); } */ .back{ height: 300px; background: pink; animation: tofront 2s infinite;/*自动重复动画 */ } @keyframes toback{ 0%{transform: rotateY(0deg);} 50%{transform: rotateY(180deg);} 100%{transform: rotateY(360deg);} } @keyframes tofront{ 0%{transform: rotateY(-180deg);} 50%{transform: rotateY(0deg);} 100%{transform: rotateY(180deg);} } </style> ~~~ ~~~ <body> <div class="container"> <div class="front"></div> <div class="back"></div> </div> </body> ~~~ 效果图如下: ![](https://box.kancloud.cn/3fdcbfdb78b64d2f6c38092d87181462_439x369.gif)