CSS3实现跑马效果

css3--animation实现跑马效果

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        *{
            padding: 0px;
            margin: 0px;
        }
        @keyframes run{
            0%{
                background-position: 0 0 ;
            }
            100%{
                background-position: -2400px 0;
            }
        }
        div{
            width: 200px;
            height: 100px;
            background-image: url(horse.png);
            background-repeat: no-repeat;
            background-position: 0 0;
            animation: run 2s steps(12,end) infinite forwards;
        }
    </style>
</head>
<body>
    <div class="horse"></div>
</body>
</html>

 

posted on 2019-07-09 16:25  conlover  阅读(1128)  评论(0编辑  收藏  举报

导航