css盒心形的代码过程,CSS心形加载的动画源码的实现

.heart-loading {

margin-top: 120px;

width: 200px;

height: 200px;

}

ul {

list-style: none;

display: flex;

justify-content: space-between;

width: 150px;

height: 10px;

/* 做心形和条形想法是一样的,但是每条高度是不一样的 */

}

li {

--count: 9;

--rgb: calc(var(--index) / var(--count) * .5turn);

/* 不能把这个延时设置的太慢.太慢就看不出来是心形了,同时调整延时和动画时长即可 */

--time: calc((var(--index) - 1) * 150ms);

border-radius: 5px;

width: 10px;

height: 10px;

background-color: #003BB3;

/* 利用fiter函数可以让颜色渐变会非常漂亮 */

filter: hue-rotate(var(--rgb));

/* 下边这个是动画时长 */

animation-duration: 2.5s;

animation-delay: var(--time);

animation-iteration-count: infinite;

}

.line-1,

.line-9 {

animation-name: line-move-1;

}

.line-2,

.line-8 {

animation-name: line-move-2;

}

.line-3,

.line-7 {

animation-name: line-move-3;

}

.line-4,

.line-6 {

animation-name: line-move-4;

}

.line-5 {

animation-name: line-move-5;

}

/* 对称的动画要相同高度,这样看出心形了 */

@keyframes line-move-1 {

0%,

10%,

90%,

100% {

height: 10px;

}

45%,

55% {

height: 30px;

transform: translate3d(0, -15px, 0);

}

}

@keyframes line-move-2 {

0%,

10%,

90%,

100% {

height: 10px;

}

45%,

55% {

height: 60px;

transform: translate3d(0, -30px, 0);

}

}

@keyframes line-move-3 {

0%,

10%,

90%,

100% {

height: 10px;

}

45%,

55% {

height: 80px;

transform: translate3d(0, -40px, 0);

}

}

@keyframes line-move-4 {

0%,

10%,

90%,

100% {

height: 10px;

}

45%,

55% {

height: 90px;

transform: translate3d(0, -30px, 0);

}

}

@keyframes line-move-5 {

0%,

10%,

90%,

100% {

height: 10px;

}

45%,

55% {

height: 90px;

transform: translate3d(0, -20px, 0);

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值