效果展示
思路
封装一个组件,放Img,伪类样式,固定在屏幕fixed
然后App应用这个组件,Z index拉最大,防止用户在加载动画时乱点,
v-show绑定loading,该数据可以放vuex还是任一的公共状态管理变量区域
然后增加vue自带的transition过渡动画,类样式控制过渡时间
代码
组件代码
<template>
<!--组件的结构-->
<transition name="fade" class="fade-enter-active fade-leave-active">
<div class="loading-bg">
<div class="loading-img"></div>
<div class="loading-image-dot"></div>
</div>
</transition>
</template>
<script>
//组件交互相关的代码(数据、方法等等)
export default {
name: 'pageLoading',
data() {
return {}
},
methods: {},
}
</script>
<style>
.loading-bg {
width: 100%;
height: 100%;
position: fixed;
display: flex;
justify-content: center;
align-items: center;
z-index: 100000;
background: #CFF6F7EA;
transition: all 0.3s ;
opacity: 1;
}
.loading-img {
width: 100px;
height: 100px;
background: url('https://cdn.zww0891.fun/%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20240701112347.jpg') center center;
background-size: cover;
border-radius: 50%;
border: 4px solid #f0f0f2;
animation: loadingAction infinite ease 0.7s;
}
.loading-image-dot:before {
content: '';
position: absolute;
background: #6bdf8f;
border: 4px solid #f0f0f2;
border-radius: 50%;
width: 30px;
height: 30px;
top: 50%;
left: 50%;
transform: translateX(20px) translateY(20px);
}
.fade-enter-active{
transition: opacity 1.2s;
}
.fade-leave-active{
transition: opacity 2s;
}
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
opacity: 0;
}
@keyframes loadingAction {
0% {
opacity: 1;
/*-ms-filter: none;*/
/*filter: none;*/
}
100% {
opacity: 0.4;
}
}
/*@keyframes blink {*/
/* 0% {*/
/* opacity: 0.4;*/
/* }*/
/* 50% {*/
/* opacity: 1;*/
/* }*/
/* 100%{*/
/* opacity: 0.4;*/
/* }*/
/*}*/
</style>
应用代码
这里我放在了app起到全局覆盖的作用,同时绑定vuex的值
发送请求时commit修改loading值,可以设置加载时长,这里我设置了500ms