image.png

    1. <style>
    2. div {
    3. position: relative;
    4. width: 300px;
    5. height: 300px;
    6. margin: 200px auto;
    7. border: 1px solid #bfbfbf;
    8. background-color: burlywood;
    9. overflow: hidden;
    10. }
    11. div::after {
    12. display: block;
    13. content: '';
    14. width: 100%;
    15. height: 100%;
    16. background-image: url(../css练习/images/she.jpg);
    17. background-size: 300px;
    18. transform-origin: bottom left;
    19. transform: rotate(90deg);
    20. background-color: paleturquoise;
    21. transition: all 0.5s;
    22. }
    23. div:hover::after {
    24. transform: rotate(0deg);
    25. }
    26. </style>
    27. </head>
    28. <body>
    29. <div></div>
    30. </body>