前端学习(199):animation动画

血红的双手。 提交于 2019-12-24 11:52:46

<!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>animation</title>
    <style>
    .box1{width: 300px;height: 300px;border:1px solid black;margin:30px auto;}
    .box2{width: 100px;height: 100px;background: red;
        animation-name: mybox;
        animation-duration: 4s;
        animation-delay: 1s;
    }
    @keyframes mybox{
        from{transform: translate(0,0);}
       to{transform: translate(200px,0);}
    }
    </style>
</head>
<body>
    <div class="box1">
        <div class="box2"></div>
    </div>
</body>
</html>

 运行结果

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!