02.米兔的动画.html 621 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. .box1{
  10. width: 132px;
  11. height: 271px;
  12. background-image: url('./mituimg/bigtap-mitu-queue-big.png');
  13. background-position: 0 0;
  14. transition: 2s steps(3);
  15. }
  16. .box1:hover{
  17. background-position: -396px 0;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div class="box1"></div>
  23. </body>
  24. </html>