多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
~~~ <style> .parent{ overflow: hidden; border:1px solid #333; position: relative; width:300px; height:400px; } .one{ position:absolute; width:100%; height:100%; } .one{ z-index: 100; background:url("images/timg.jpg") no-repeat; background-size: 100% 100%; } .two{ width:300px; height:400px; position: absolute; left:0; top:0; z-index: 101; background:rgba(255,122,133,.5); transition:all 0.5s; transform-origin: right bottom; transform: rotate(90deg); } .parent:hover .two{ transform: rotate(0deg); } </style> </head> <body> <div class="parent"> <div class="one"> one </div> <div class="two"> </div> </div> </body> ~~~ ![](https://box.kancloud.cn/dd210e5a009c1b9dd820ec0656a1c848_327x415.gif)