博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CSS练习实现多种loading
阅读量:6715 次
发布时间:2019-06-25

本文共 2795 字,大约阅读时间需要 9 分钟。

One

图片描述

核心代码:

.loading{        width: 70px;        height: 200px;        margin: auto;        display: flex;    }    .loading span{        display: inline-block;        width: 8px;        height: 40px;        border-radius: 4px;        background: #91d5ff;        margin: auto;        -webkit-animation: load 1s ease infinite;    }    @-webkit-keyframes load{        0%,100%{            height: 40px;            background: #91d5ff;        }        50%{            height: 80px;            background: #40a9ff;        }    }    .loading span:nth-child(2){        -webkit-animation-delay:0.2s;    }    .loading span:nth-child(3){        -webkit-animation-delay:0.4s;    }    .loading span:nth-child(4){        -webkit-animation-delay:0.6s;    }    .loading span:nth-child(5){        -webkit-animation-delay:0.8s;    }


Two

图片描述

核心代码:

.container{  width:100%;  height:100%;  display:flex;}.loading{   width:160px;   height:8px;   background:#91d5ff;   border-radius:4px;   margin:auto;   display: flex;   align-items:center;   -webkit-animation: load 1.2s ease-in-out infinite alternate;}         .loading span{  display:inline-block;  width:18px;  height:18px;  background:#91d5ff;  border-radius:9px;  -webkit-animation: loadSpan 1.2s ease-in-out infinite alternate;}@-webkit-keyframes load{  0%{      background:#91d5ff;  }    100%{      background:#69c0ff;    }}@-webkit-keyframes loadSpan{  0%{      background:#91d5ff;  }    100%{      margin-left:142px;      background:#69c0ff;    }}


Three

图片描述

核心代码:

.container{  width:100%;  height:100%;  display:flex;}.loading{   width:160px;   height:80px;   margin:auto;   display: flex;}         .loading span{  display:inline-block;  width:18px;  height:18px;  background:#91d5ff;  border-radius:9px;  margin:auto;  -webkit-animation: loadSpan 1s ease infinite;}@-webkit-keyframes loadSpan{  0%{      opacity:1;  }    100%{      opacity:0;    }}.loading span:nth-child(2){  -webkit-animation-delay:0.2s;}.loading span:nth-child(3){  -webkit-animation-delay:0.4s;}.loading span:nth-child(4){  -webkit-animation-delay:0.6s;}.loading span:nth-child(5){  -webkit-animation-delay:0.8s;}


Four

图片描述

核心代码:

.container{  width:100%;  height:100%;  display:flex;}.loading{   width:160px;   height:80px;   margin:auto;   display: flex;}         .loading span{  display:inline-block;  width:18px;  height:18px;  background:#91d5ff;  border-radius:9px;  margin:auto;  -webkit-animation: loadSpan 1.2s ease infinite;}@-webkit-keyframes loadSpan{  0%{      opacity:1;  }    100%{      opacity:0;      -webkit-transform: scale(0.3);    }}.loading span:nth-child(2){  -webkit-animation-delay:0.2s;}.loading span:nth-child(3){  -webkit-animation-delay:0.4s;}.loading span:nth-child(4){  -webkit-animation-delay:0.6s;}.loading span:nth-child(5){  -webkit-animation-delay:0.8s;}


ps:参考

未完待续

转载地址:http://llelo.baihongyu.com/

你可能感兴趣的文章
关于CCR测评器的自定义校验器(Special Judge)
查看>>
java设计模式之 装饰器模式
查看>>
loadrunner-3-18Service-Level Agreement(服务水平协议)
查看>>
Python编程-基础知识-列表和元组
查看>>
利息力(force of interest)
查看>>
Oracle 角色及其权限
查看>>
NiftyDialogEffects:集成了多种动画效果的Dialog控件
查看>>
《世界是数字的》读后感
查看>>
AD软件原理图封装过程(即由原理图转换到PCB)
查看>>
cocos2d-x lua table与json的转换
查看>>
mysql的基本原理
查看>>
《面向对象分析与设计》——抽象
查看>>
linux学习记录-------jdk安装配置
查看>>
查看dll依赖项
查看>>
koa和egg项目webpack热更新实现
查看>>
ansible普通用户su切换问题
查看>>
2017.10.1
查看>>
P1965 转圈游戏
查看>>
洛谷——P1187 3D模型
查看>>
温度传感器,ds18b20
查看>>