loading.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <view v-if="loading.show" class="loading-wrapper flex-column-align-center cu-load load-modal">
  3. <!-- <view class="loading-box flex-column-align-center" :class="[loading.black && 'black']">
  4. <image :src="require('@/static/image/loading/out.png')" class="out" />
  5. <image :src="require('@/static/image/loading/in.png')" class="in" />
  6. <image :src="require('@/static/image/loading/title.png')" class="title translateXY" />
  7. </view> -->
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. computed: {
  13. loading() {
  14. return this.$store.state.loading
  15. }
  16. }
  17. }
  18. </script>
  19. <style lang="scss" scoped>
  20. .loading-wrapper {
  21. // background: transparent;
  22. position: fixed;
  23. left: 0;
  24. right: 0;
  25. top: 0;
  26. bottom: 0;
  27. z-index: 1500;
  28. }
  29. @keyframes circle-1 {
  30. from {
  31. transform: rotateZ(360deg);
  32. }
  33. to {
  34. transform: rotateZ(0deg);
  35. }
  36. }
  37. @keyframes circle-2 {
  38. from {
  39. transform: rotateZ(-360deg);
  40. }
  41. to {
  42. transform: rotateZ(0deg);
  43. }
  44. }
  45. .black {
  46. background: rgba($color: #000000, $alpha: 0.8);
  47. }
  48. .loading-box {
  49. width: 300rpx;
  50. height: 300rpx;
  51. position: relative;
  52. border-radius: 20rpx;
  53. .out {
  54. width: 232rpx;
  55. height: 232rpx;
  56. position: absolute;
  57. left: 34rpx;
  58. top: 34rpx;
  59. animation: circle-1 3s linear infinite;
  60. }
  61. .in {
  62. width: 250rpx;
  63. height: 250rpx;
  64. position: absolute;
  65. left: 25rpx;
  66. top: 25rpx;
  67. animation: circle-2 3s linear infinite;
  68. }
  69. .title {
  70. width: 90rpx;
  71. height: 13rpx;
  72. position: absolute;
  73. }
  74. }
  75. </style>