• 弹性盒子+CSS3帧动画


    <!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>Document</title>
    <style>
    * {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    }

    .box {
    400px;
    height: 400px;
    background: #999999;
    border-radius: 10px;
    display: flex;
    /* 横向 */
    /* flex-direction: row; */
    /* 换行*/
    /* flex-wrap: nowrap; */
    /* justify-content: center; 居中对齐 */
    /* justify-content: space-between 两端对齐 */
    /* justify-content: space-around; 两端间隔相等 */
    /* align-items: flex-start; 顶端对齐 */
    /* align-items: center; 居中对齐 */
    /* align-items: flex-end; 底部对齐 */
    /* align-items: baseline; 基线对齐 */
    /* 多根轴线对齐方式 */
    /* align-content: flex-start; 与交叉轴起点对齐 */
    /* align-content: center; 与交叉轴中点对齐 */
    /* align-content: flex-end; 与交叉轴终点对齐 */
    /* align-content: space-between; 与交叉轴两端对齐,轴线之间的间隔平均分布 */
    /* align-content: space-around; 每根轴线两侧的间隔相等,轴线之间的间隔比轴线与边框的间隔大一倍 */
    /* align-content: stretch(默认值); 轴线占满整个交叉轴 */
    }

    .box div {
    100px;
    height: 100px;
    border: 1px solid black;
    border-radius: 10px;
    animation: one 2s;
    background: linear-gradient(to right, red, yellow);
    animation-iteration-count: infinite;
    /* flex-grow: 1; 项目放大比例 */
    }

    .box p {
    animation: two 2s;
    animation-iteration-count: infinite;
    background: linear-gradient(to right, blue, red);
    200px;
    height: 100px;
    border: 1px solid black;
    border-radius: 10px;
    /* flex-grow: 1; 项目放大比例 */
    /* flex-shrink: 1; */
    }

    .box p:nth-of-type(2) {
    flex-shrink: 0;
    align-self: center;
    }

    .box p:nth-of-type(3) {
    align-self: flex-end;
    }

    /* .box div:nth-child(2){
    font-size: 60px;
    order: -1; 项目排序
    }
    .box div:nth-child(3){
    font-size: 40px;
    }
    .box div:nth-child(4){
    font-size: 20px;
    } */
    @keyframes one {
    0% {
    background: linear-gradient(to right, yellow, red);
    }

    25% {
    background: linear-gradient(to right, red, yellow);
    }

    50% {
    background: linear-gradient(to right, yellow, red);
    }

    75% {
    background: linear-gradient(to right, red, yellow);
    }

    100% {
    background: linear-gradient(to right, yellow, red);
    }
    }

    @keyframes two {
    0% {
    background: linear-gradient(to right, red, blue);
    }

    25% {
    background: linear-gradient(to right, blue, red);
    }

    50% {
    background: linear-gradient(to right, red, blue);
    }

    75% {
    background: linear-gradient(to right, blue, red);
    }

    100% {
    background: linear-gradient(to right, red, blue);
    }
    }
    </style>
    </head>

    <body>
    <div class="box">
    <div>1</div>
    <p>1</p>
    <p>2</p>
    <p>3</p>
    </div>
    </body>

    </html>
  • 相关阅读:
    ezjailserver备份和恢复方法
    三种方式上传文件-Java
    将EBS设为首页worklist删除误报
    软软测试总结检查
    C++包括头文件&lt;&gt;和&quot;&quot;差额
    web报告工具FineReport在使用方法和解决方案常见错误遇到(一)
    WEB流程设计器 = jQuery + jsPlumb + Bootstrap
    SuperMap/PlottingSymbol
    基于easyui开发Web版Activiti流程定制器详解(六)——Draw2d的扩展(三)
    基于easyui开发Web版Activiti流程定制器详解(六)——Draw2d详解(二)
  • 原文地址:https://www.cnblogs.com/sunyang-001/p/10957900.html
Copyright © 2020-2023  润新知