loading.uvue 385 B

123456789101112131415161718
  1. <script setup lang='ts'>
  2. </script>
  3. <template>
  4. <view class="loading-image">
  5. <image src="https://oss.xiaoxiongcode.com/static/home/loading.gif" />
  6. </view>
  7. </template>
  8. <style lang="scss" scoped>
  9. .loading-image {
  10. @apply w-full h-full fixed bg-[#000118] top-0 left-0 flex items-center justify-center;
  11. z-index: 10000;
  12. image {
  13. @apply object-cover w-[70vw];
  14. }
  15. }
  16. </style>