zoukankan      html  css  js  c++  java
  • 边框圆角练习--跳动的心

    绝对定位后的居中
    margin-left: -125px;
    技巧: 在企业开发中推荐使用如下的方式让元素居中
    水平居中: left:50%; transform: translateX(-50%);
    垂直居中: top:50%; transform: translateY(-50%);
     
         .all{
                 450px;
                height: 400px;
                box-sizing: border-box;
                margin: 200px auto;
                position: relative;
            }
            .left, .right{
                 250px;
                height: 250px;
                background: red;
                border-radius: 50%;
                position: absolute;
                top: 0;
                box-shadow: 0 0 40px red;
            }
            .left{
                left: 0;
            }
            .right{  
                right: 0;
            }
            .bottom{
                 250px;
                height: 250px;
                background: red;
                position: absolute;
                bottom: 50px;
                left: 50%;
                transform: translateX(-50%) rotateZ(45deg);
                box-shadow: 0 0 40px red;
            }
            .all{
                animation: sport 1s linear 0s infinite normal;
            }
            @keyframes sport {
                0%{
                    transform: scale(1);
                }
                50%{
                    transform: scale(1.1);
                }
                100%{
                    transform: scale(1);
                }
            }

        
    <div class="all">
    <!--左边的小圆-->
    <div class="left"></div>
    <!--右边的小圆-->
    <div class="right"></div>
    <!--底部的尖尖-->
    <div class="bottom"></div>
    </div>
     
     
  • 相关阅读:
    StringTable
    TCP网络协议
    也说JVM内存区域
    JVM类加载
    java中的引用:强、软、弱、虚
    AQS
    vscode支持unicode编码
    设计模式简记-快速改善代码质量的编程规范
    擅事利器
    设计模式简记-通过重构增强代码可测试性实战
  • 原文地址:https://www.cnblogs.com/zhangzhengyang/p/11100166.html
Copyright © 2011-2022 走看看