逐帧动画
代码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> div { margin: 200px auto; width: 140px; height: 140px; background:url(images/bg.png); /* 背景图有几个重复的小孩子steps就写几 */ animation: move 2s infinite steps(12); } /* 创建动画效果 */ @keyframes move { from { background-position: 0 0; } to { /* 这个是图片的大小 */ background-position: -1680px 0; } } </style> </head> <body> <div></div> </body> </html>
知识点