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

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. transition: all 1s linear;
  17. }
  18. .box img:first-child{
  19. transform: rotate(45deg) ;
  20. position: relative;
  21. }
  22. .box img:nth-child(2){
  23. transform: rotate(-45deg) ;
  24. position: relative;
  25. }
  26. .box img:hover{
  27. transform: rotate(0) scale(1.5) ;
  28. z-index: 2;
  29. }
  30. </style>
  31. </head>
  32. <body>
  33. <div class="box">
  34. <img src="./img/slider1.jpg" alt="">
  35. <img src="./img/slider2.jpeg" alt="">
  36. </div>
  37. </body>
  38. </html>