练习1_旋转照片.html 886 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. .box{
  9. width: 400px;
  10. height: 400px;
  11. border:2px dashed black;
  12. margin:300px auto;
  13. }
  14. .box img{
  15. width: 400px;
  16. }
  17. .box img:first-child{
  18. transform: rotate(45deg) ;
  19. position: relative;
  20. }
  21. .box img:nth-child(2){
  22. transform: rotate(-45deg) ;
  23. position: relative;
  24. }
  25. .box img:hover{
  26. transform: rotate(0) scale(1.5) ;
  27. z-index: 2;
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. <div class="box">
  33. <img src="./img/slider1.jpg" alt="">
  34. <img src="./img/slider2.jpeg" alt="">
  35. </div>
  36. </body>
  37. </html>