@keyframes定义关键帧
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> .slide { width: 100%; height: 450px; overflow: hidden; } .img02 { margin-top: -5px; border: 0; width: 100%; height: 400px; background: url(img/pj.jpg)no-repeat; background-size: 100% 800px; animation:runAnimation 5s steps(2) infinite; } @keyframes runAnimation { from{background-position: 0px 0px;} to{background-position: 0px -800px;} } </style> </head> <body> <div class="slide"> <div class="img02"> </div> </div> </body> </html>图片