css代码:
body {
background:#1b1d1f;
display:flex;
justify-content:center;
align-items:center;
height:100vh;
padding:0;
margin:0
}
.loader {
width:250px;
height:50px;
line-height:50px;
text-align:center;
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
font-family:helvetica,arial,sans-serif;
text-transform:uppercase;
font-weight:900;
color:#f1404b;
letter-spacing:0.2em
}
.loader::before,.loader::after {
content:"";
display:block;
width:15px;
height:15px;
background:#f1404b;
position:absolute;
animation:load .7s infinite alternate ease-in-out
}
.loader::before {
top:0
}
.loader::after {
bottom:0
}
@keyframes load {
0% {
left:0;
height:30px;
width:15px
}
50% {
height:8px;
width:40px
}
100% {
left:235px;
height:30px;
width:15px
}
}
html代码:
<div id="loading">
<div class="loader">Loading...</div>
</div>
点击查看效果
以上是编程学习网小编为您介绍的“网站加载中loading..样式四代码介绍”的全面内容,想了解更多关于 前端知识 内容,请继续关注编程基础学习网。
沃梦达教程
本文标题为:网站加载中loading..样式四代码介绍
基础教程推荐
猜你喜欢
- Photoshop CC给前端开发者怎样的体验?新特性介绍 2024-01-23
- ajax响应json字符串和json数组的实例(详解) 2023-01-31
- javascript获取隐藏元素(display:none)的高度和宽度的方法 2024-04-27
- CSS经典实用技巧18招 2022-10-16
- vue-roter路由配置的3种模式介绍 2025-01-20
- 阿里巴巴(阿里人)的价值观是什么 2024-12-13
- Ajax跨域请求COOKIE无法带上的完美解决办法 2023-02-01
- openlayers6之地图覆盖物overlay详解 2024-04-09
- 从三方面加速CSS样式作用网页速度 2024-03-13
- vue-router两种模式区别及使用注意事项详解 2024-04-16