lod动画

作者: 中二死军宅 | 来源:发表于2019-04-02 23:01 被阅读0次

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>loading动画</title>
<style type="text/css">
.box{
width: 300px;
height: 135px;
border: 2px solid #000;
margin: 200px auto 0;
}
.box p{
text-align: center;
width: 100%;

    }
    .box div{
        width: 30px;
        height: 70px;
        float: left;
        background-color: gold;
        margin: 15px;
        border-radius: 10px;
    }
    .box div:nth-child(1){
        background-color: red;
        animation: loading 0.5s ease 0s infinite alternate;
    }
    .box div:nth-child(2){
        background-color: green;
        animation: loading 0.5s ease 0.1s infinite alternate;
    }
    .box div:nth-child(3){
        background-color: pink;
        animation: loading 0.5s ease 0.2s infinite alternate;
    }
    .box div:nth-child(4){
        background-color: greenyellow;
        animation: loading 0.5s ease 0.3s infinite alternate;
    }
    .box div:nth-child(5){
        background-color: cyan;
        animation: loading 0.5s ease 0.4s infinite alternate;
    }
    @keyframes loading{
        from{
            transform: scaleY(1);
        }
        to{
            transform: scaleY(0.5);
        }
    }
</style>

</head>
<body>
<div class="box">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<p>loading...</p>
</div>
</body>
</html>

相关文章

  • lod动画

    loading动画 .box{width: 300px;height: 1...

  • unity性能优化

    1、蒙皮网格动画改顶点动画 空间换时间 2、Animator LOD 远处动画降频 3、Animator Inst...

  • 3.3 结构-RenderSetup

    LOD LOD(Level of Detail),如LOD 200,即指定了其为200(其实这是Unity的内建D...

  • Unity Lod和Occlusion Culling

    Lod和Occlusion Culling Lod和遮挡剔除。  Occlusion Culling:Occlus...

  • Zhes Zhit Doul(舍不得)

    Zhes zhit doul! Nongs lax ndouk nongs lod, nongs lod yuad...

  • Tableau LOD与表计算

    LOD 参考链接 https://www.tableau.com/zh-cn/about/blog/LOD-exp...

  • LOD

    LOD: Level of Detail LOD是Level Of Details的缩写即多层次细节。在计算机图形...

  • 游戏中的LOD技术和PBR渲染介绍

    LOD 1976年,Clark[提出了细节层次(Levels of Detail,简称LOD)模型的概念,认为当物...

  • LOD | 为什么要有LOD

    在tableau中,我们的目标是使数据分析成为一种愉快的行为。 一些朋友用户经常讲到,当他们沉浸在软件的操作中...

  • Unity 面试题汇总(四)

    Unity性能优化 1.lod是什么,优缺点是什么 LOD技术即 Levels of Detail 的简称,意为多...

网友评论

      本文标题:lod动画

      本文链接:https://www.haomeiwen.com/subject/gakobqtx.html