CSS3 动画-奔跑的小熊

CSS3

动画之奔跑的小熊

img/bear.png:
在这里插入图片描述
源码:


<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Documenttitle>
    <style>
        body {
            background-color: #ccc;
        }
        div {
            position: absolute;
            top: 100px;
            width: 200px;
            height: 100px;
            background: url(img/bear.png) no-repeat;
            animation: bear 1s steps(8) infinite, move 5s forwards;
        }
        @keyframes bear {
            0% {
                background-position: 0 0;
            }
            100% {
                background-position: -1600px 0;
            }
        }
        @keyframes move {
           0% {
               left: 0;
           }
           100% {
               left: 50%;
               transform: translateX(-50%);
           }
        }
    style>
head>
<body>
    <div>div>
body>
html>

运行结果:
CSS3 动画-奔跑的小熊_第1张图片
参考资料:
[1] CSS3 动画 | 菜鸟教程

你可能感兴趣的:(前端)