代码
提交代码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Animate</title> <style> /* 清除默认样式 */ * { padding: 0; margin: 0; } /* 这段代码是为了居中显示,不是重点,看不懂的话可以无视 */ body { height: 100vh; display: flex; align-items: center; justify-content: center; } .animate { width: 216.6px; height: 300px; /* 指定背景图 */ background: url(http://img.mukewang.com/wiki/5ed9b321092b587026000300.jpg); /* 使用预先定义好的动画 */ animation: change-position 3s linear both; } /* 定义动画 */ @keyframes change-position { from { background-position: 0 } to { background-position: -2600px } } </style> </head> <body> <div class="animate"></div> </body> </html>
运行结果