43 Star 958 Fork 271

德育处主任/前端数据可视化

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
L96.vue 990 Bytes
一键复制 编辑 原始数据 按行查看 历史
德育处主任 提交于 2021-12-01 14:39 +08:00 . Loading 96
<template>
<div class="com__box">
<!-- loading -->
<div class="loading"></div>
<!-- 说明:组件名 -->
<h4 class="explain">L96.vue</h4>
</div>
</template>
<style lang="scss" scoped>
.loading {
width: 16px;
height: 16px;
box-shadow: 0 30px, 0 -30px;
border-radius: 4px;
background: currentColor;
display: inline-block;
position: relative;
color: #ddd;
left: -30px;
animation: loading-animation 2s ease infinite;
}
.loading::after,
.loading::before {
content: "";
width: 16px;
height: 16px;
box-shadow: 0 30px, 0 -30px;
border-radius: 4px;
background: currentColor;
color: #ddd;
position: absolute;
left: 30px;
top: 0;
animation: loading-animation 2s 0.2s ease infinite;
}
.loading::before {
animation-delay: 0.4s;
left: 60px;
}
@keyframes loading-animation {
0% {
top: 0;
color: #ddd;
}
50% {
top: 30px;
color: rgba(255, 255, 255, 0.2);
}
100% {
top: 0;
color: #ddd;
}
}
</style>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/k21vin/front-end-data-visualization.git
git@gitee.com:k21vin/front-end-data-visualization.git
k21vin
front-end-data-visualization
前端数据可视化
master

搜索帮助