栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > Web开发 > Html/CSS > CSS教程

CSS心形加载的动画源码的实现

CSS教程 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

废话不多说上代码,代码很简答,研究一下就明白了,有不明白的可以问我。



  
    
    
    
      .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;
 
 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);
 }
      }
    
  
  
    
      

到此这篇关于CSS心形加载的动画源码的实现的文章就介绍到这了,更多相关CSS 心形加载动画内容请搜索考高分网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持考高分网!

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/214640.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号