废话不多说上代码,代码很简答,研究一下就明白了,有不明白的可以问我。
<!DOCTY PE ht ML >
<html>
<head>
< ;m eta charset="utf-8">
<t IT le></title>
<style type="text/css">
.heart-loading {
m arg in -t op: 120px;
width: 200px;
h ei ght: 200px;
}
ul {
list -s tyle: none;
dis play : flex;
justify-content: space-between;
width: 150px;
height: 10px;
/* 做心形和条形想法是一样的,但是每条高度是不一样的 */
}
li {
--count: 9;
--rgb: calc( VAR (- -i ndex) / 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-n am e: 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);
}
}
</style>
</head>
<body>
<div class="heart-loading">
<ul>
<li class="line-1" style="--index: 1"></li>
<li class="line-2" style="--index: 2"></li>
<li class="line-3" style="--index: 3"></li>
<li class="line-4" style="--index: 4"></li>
<li class="line-5" style="--index: 5"></li>
<li class="line-6" style="--index: 6"></li>
<li class="line-7" style="--index: 7"></li>
<li class="line-8" style="--index: 8"></li>
<li class="line-9" style="--index: 9"></li>
</ul>
</div>
</body>
</html>
到此这篇关于CSS心形加载的动画 源 码的实现的 文章 就介绍到这了,更多相关CSS 心形加载动画内容请搜索以前的文章或继续浏览下面的相关文章,希望大家以后多多支持!
总结
以上是 为你收集整理的 CSS心形加载的动画源码的实现 全部内容,希望文章能够帮你解决 CSS心形加载的动画源码的实现 所遇到的问题。
如果觉得 网站内容还不错, 推荐好友。
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://haodehen.cn/did201373