企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
![](https://box.kancloud.cn/2c554ceaddb1a0fd835f0fc1f827ae7e_454x373.gif) 主要要点 transition: all 3s;//过渡时间 transform: rotate(360deg);旋转度数 transform-origin: center center;//旋转中心 ~~~ .box{ width: 150px; height: 150px; position: relative; overflow: hidden; margin: 300px; background: pink; } .cover{ height: 0; width: 0; background: rebeccapurple; opacity: 0.6; position: absolute; left:0; top: 0; transition: all 3s; transform: rotate(360deg); transform-origin: center center;//旋转中心 } .box:hover .cover{ width: 150px; height: 150px; transform: rotate(0); } ~~~ ~~~ <div class="box"> <div class="cover"></div> </div> ~~~