1. <style>
    2. div{
    3. position: absolute;
    4. width: 200px;
    5. height: 100px;
    6. background: url(../HTML5+CSS3/media/bear.png) no-repeat;
    7. /* margin-left: -100px; 元素可以添加多个动画,用逗号隔开*/
    8. animation: bear 1s steps(8) infinite,move 3s forwards;
    9. }
    10. @keyframes bear{
    11. 0%{
    12. background-position: 0 0;
    13. }
    14. 100%{
    15. background-position: -1600px 0;
    16. }
    17. }
    18. @keyframes move{
    19. 0%{
    20. left: 0;
    21. }
    22. 100%{
    23. left: 50%;
    24. /* margin-left: -100px; */
    25. /*走自身的一半 */
    26. transform: translateX(-50%);
    27. }
    28. }
    29. </style>
    30. <body>
    31. <div></div>
    32. </body>

    image.png
    image.png