边框圆角练习--跳动的心
Posted zhangzhengyang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了边框圆角练习--跳动的心相关的知识,希望对你有一定的参考价值。
绝对定位后的居中
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>
以上是关于边框圆角练习--跳动的心的主要内容,如果未能解决你的问题,请参考以下文章