🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
~~~ <style> .box{ width: 200px; height: 200px; position: relative; overflow: hidden; background: palegreen; } .cover{ width: 0; height: 0; background: rgba(25,25,25,0.2); position: absolute; transition: all 1s; transform: rotate(360deg); transform-origin: 50% 50%; } .box:hover .cover{ width: 200px; height: 200px; transform: rotate(0deg); } </style> ~~~ ~~~ <body> <div class="box"> <div class="cover"></div> </div> </body> ~~~ ![](https://box.kancloud.cn/5821c6657867d92922f8cec530225d1d_240x251.gif)