html如何css3加载中loading三点依次闪动加载效果,下面编程教程网小编给大家简单介绍一下实现代码!
html代码:
<div class="loading"></div>
css动态效果代码:
body{
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
background: #69a7f7;
}
.loading:before,
.loading:after,
.loading {
border-radius: 50%;
width: 2.5em;
height: 2.5em;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation: load7 1.8s infinite ease-in-out;
animation: load7 1.8s infinite ease-in-out;
}
.loading {
margin: 8em auto;
font-size: 10px;
position: relative;
text-indent: -9999em;
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
}
.loading:before {
left: -3.5em;
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
}
.loading:after {
left: 3.5em;
}
.loading:before,
.loading:after {
content: '';
position: absolute;
top: 0;
}
@-webkit-keyframes load7 {
0%,
80%,
100% {
box-shadow: 0 2.5em 0 -1.3em #ffffff;
}
40% {
box-shadow: 0 2.5em 0 0 #FFF;
}
}
@keyframes load7 {
0%,
80%,
100% {
box-shadow: 0 2.5em 0 -1.3em #ffffff;
}
40% {
box-shadow: 0 2.5em 0 0 #FFF;
}
}
以上是编程学习网小编为您介绍的“css3加载中loading三点依次闪动效果代码”的全面内容,想了解更多关于 前端知识 内容,请继续关注编程基础学习网。
沃梦达教程
本文标题为:css3加载中loading三点依次闪动效果代码
基础教程推荐
猜你喜欢
- uniapp小程序使用高德地图api实现路线规划的示例代码 2024-02-06
- 基于HTML+JavaScript实现中国象棋 2022-08-31
- HTML——学成网制作 2023-10-28
- vue主页点击按钮如何调用子组件方法 2024-12-10
- Javascript 跨域访问解决方案 2024-02-07
- 对背景图定位中background-position属性的自我理解 2024-03-10
- 深入理解JavaScript系列(22):S.O.L.I.D五大原则之依赖倒置原则DIP详解 2024-02-10
- css滤镜效果(二) 2024-03-11
- 如何解决attachEvent函数时,this指向被绑定的元素的问题? 2023-12-01
- JS数组去掉重复数据只保留一条的实现代码 2024-01-07