欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

css使用animation逐帧实现动画效果

程序员文章站 2022-03-16 16:21:21
...

css使用animation逐帧实现动画效果,如图所示:css使用animation逐帧实现动画效果
由上图所示,它是一帧一帧无限循环实现的
css使用animation逐帧实现动画效果
代码如下:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        body{
            background:#000;
        }
        .bear{
            width:200px;
            height:200px;
            position:absolute;
            left:50%;
            top:50%;
            margin-left:-100px;
            margin-top:-100px;
            background:url(../../assets/images/bear.png) no-repeat 0 0;
            animation:move 1.5s steps(8,end) infinite ;
        }
        @keyframes move{
            0%{
                background-position:0 0;}
            100%{
                background-position:-1600px 0;}}

    </style>
</head>
<body>
    <div class="bear">

    </div>
</body>
</html>
相关标签: css css3