
<style>div {position: relative;width: 300px;height: 300px;margin: 200px auto;border: 1px solid #bfbfbf;background-color: burlywood;overflow: hidden;}div::after {display: block;content: '';width: 100%;height: 100%;background-image: url(../css练习/images/she.jpg);background-size: 300px;transform-origin: bottom left;transform: rotate(90deg);background-color: paleturquoise;transition: all 0.5s;}div:hover::after {transform: rotate(0deg);}</style></head><body><div></div></body>
