缓冲

作者: 白s圣诞节 | 来源:发表于2018-10-25 20:06 被阅读0次
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>加载</title>
    <style type="text/css">
        .box{
            width:302px;
            height:125px;
            border:1px solid black;
            margin:0 auto;
        }
        .box h3{
            width:68px;
            height:17px;
            margin:0 auto;
            margin-top:95px;
            /*margin-bottom:8px;*/

        }
        .box11{
            width:30px;
            height:36px;
            background-color: #ff0000;
            border-radius: 10px;
            margin-left:15px;
            margin-top:32px;
            margin-bottom: 57px;
            float:left;
            /*transform: scale(0.5,2);*/
            animation: moving 1s ease 0ms infinite;
        }
        /*@keyframes moving{
            
            from{
                height: 36px;
            }
            to{
                height:72px;
                height: -36px;
            }*/
        .box12{
            width:30px;
            height:36px;
            background-color: #008100;
            border-radius: 10px;
            float:left;
            margin-left:29px;
            margin-top:32px;
            animation: moving 1s ease 100ms infinite;
        }
        .box13{
            width:30px;
            height:36px;
            background-color: #ffc1cb;
            border-radius: 10px;
            float:left;
            margin-left:29px;
            margin-top:32px;
            animation: moving 1s ease 200ms infinite;
        }
        .box14{
            width:30px;
            height:36px;
            background-color: #adff2e;
            border-radius: 10px;
            float:left;
            margin-left:29px;
            margin-top:32px;
            animation: moving 1s ease 300ms infinite;
        }
        .box15{
            width:30px;
            height:36px;
            background-color: #00ffff;
            border-radius: 10px;
            float:left;
            margin-left:29px;
            margin-top:32px;
            animation: moving 1s ease 400ms infinite;
        }
        @keyframes moving{
            from{
                
            }
            to{
                /*缩放 (宽,高)*/
                transform: scale(1,2);
            
            }

    </style>
</head>
<body>
    <div class = "box">
        <div class = "box11"></div>
        <div class = "box12"></div>
        <div class = "box13"></div>
        <div class = "box14"></div>
        <div class = "box15"></div>
        <h3>loading...</h3>
    </div>
</body>
</html>
image.png

相关文章

  • 今日份打卡 176/365

    技术文章* 写缓冲* 一般写缓冲:以缓冲池为中心,双写缓冲池以及redo log* InnoDB优化写缓冲:以缓冲...

  • 帧缓冲

    帧缓冲(Framebuffer),由颜色缓冲,深度缓冲,模板缓冲结合,被存储于内存中。 通过帧缓冲可以将你的场景渲...

  • OpenGL模板缓冲区与模板测试(转)

    OpenGL模板缓冲区与模板测试 帧缓冲区有许多缓冲区构成,这些缓冲区大致分为: 颜色缓冲区:用于绘图的缓冲区,它...

  • PostgreSQL中的预取算法

    关于Buffer 全部缓冲区构成一个缓冲池 缓冲池: 缓冲区管理跟踪BmTrace区 记录缓冲区被使用的状况 BM...

  • 11.18

    Java 中,直接缓冲区与非直接缓冲器有什么区别?非直接缓冲区:通过allocate()分配缓冲区,将缓冲区建立在...

  • 设备管理(二)

    目录 5.3 缓冲技术 单缓冲 双缓冲 多缓冲 5.4 驱动调度技术 存储设备的物理结构 循环排序 优化分布 搜查...

  • OutputStream 输出流 写

    // 带写缓冲区,缓冲区大小10,缓冲区内存中, 1,2,3,4把他们都放到缓冲区--缓冲区满是才写到文件 // ...

  • 数据库作业学习

    存储和缓冲管理 实验目的 实现一个简易的存储和缓冲管理器 缓冲区和页面 缓冲区Buffer代表了在主存中的空间缓冲...

  • OpenGL ES for Android(帧缓冲)

    简介 我们学过的颜色缓冲,深度缓冲已经模板缓冲结合起来就叫帧缓冲。默认系统会定义一个帧缓冲(在移动端就是EGL创建...

  • 缓冲

    心直口快,说出别人的缺点,其实并没有什么恶意,是性格使然。我之前也是一个没心没肺的人,随着年龄的增长,慢慢的觉得...

网友评论

      本文标题:缓冲

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