12345678910111213141516171819202122232425262728 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- .box1{
- width: 132px;
- height: 271px;
- background-image: url('./mituimg/bigtap-mitu-queue-big.png');
- background-position: 0 0;
- transition: 2s steps(3);
- }
- .box1:hover{
- background-position: -396px 0;
- }
- </style>
- </head>
- <body>
-
- <div class="box1"></div>
- </body>
- </html>
|