码迷,mamicode.com
首页 > 其他好文 > 详细

边框圆角练习--跳动的心

时间:2019-06-27 23:03:00      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:shadow   水平居中   ima   bsp   key   使用   osi   ota   form   

绝对定位后的居中
margin-left: -125px;
技巧: 在企业开发中推荐使用如下的方式让元素居中
水平居中: left:50%; transform: translateX(-50%);
垂直居中: top:50%; transform: translateY(-50%);
 
     .all{
            width: 450px;
            height: 400px;
            box-sizing: border-box;
            margin: 200px auto;
            position: relative;
        }
        .left, .right{
            width: 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{
            width: 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>
 

 

 

边框圆角练习--跳动的心

标签:shadow   水平居中   ima   bsp   key   使用   osi   ota   form   

原文地址:https://www.cnblogs.com/zhangzhengyang/p/11100166.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!