douyin/src/components/Loading.vue
2021-08-21 00:32:02 +08:00

79 lines
1.3 KiB
Vue

<template>
<div class="Loading" :class="isFullScreen?'full':'normal'">
<div class="circle blue"></div>
<div class="circle red"></div>
</div>
</template>
<script>
export default {
name: "Loading",
props: {
isFullScreen: {
type: Boolean,
default: true
}
}
}
</script>
<style scoped lang="less">
@import "../assets/scss/index";
.Loading {
&.normal {
width: 100%;
height: 4rem;
display: flex;
justify-content: center;
align-items: center;
}
&.full {
position: fixed;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
display: flex;
justify-content: space-between;
width: 2.2rem;
}
.circle {
width: 1rem;
height: 1rem;
border-radius: 50%;
}
.blue {
background: cadetblue;
animation: anim-blue .4s ease-in-out 0s infinite alternate;
}
.red {
background: @primary-btn-color;
animation: anim-red .4s ease-in-out 0s infinite alternate;
}
@keyframes anim-blue {
from {
transform: translate3d(0, 0, 0) scale(1);
}
to {
transform: translate3d(1rem, 0, 0) scale(1.2);
}
}
@keyframes anim-red {
from {
transform: translate3d(0, 0, 0) scale(1);
}
to {
transform: translate3d(-1rem, 0, 0) scale(1.2);
}
}
}
</style>