练习2_旋转照片墙.html 931 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. body{
  9. perspective: 1000px;
  10. }
  11. .box{
  12. width: 400px;
  13. height: 400px;
  14. border:2px dashed black;
  15. margin: 200px auto;
  16. transform-style: preserve-3d;
  17. }
  18. .box img{
  19. width: 400px;
  20. transition: all 1s linear;
  21. }
  22. .img1{
  23. transform: rotate(45deg);
  24. }
  25. .img2{
  26. transform: rotate(-30deg);
  27. }
  28. .img1:hover,.img2:hover{
  29. transform: translateZ(500px);
  30. }
  31. </style>
  32. </head>
  33. <body>
  34. <div class="box">
  35. <img class="img1" src="./img/swiper.jpg" alt="img">
  36. <img class="img2" src="./img/swiperimg.jpg" alt="img">
  37. </div>
  38. </body>
  39. </html>