screen.vue 562 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <view class="launch-screen">
  3. <image class="top-image" src="/static/launch/bg1@3x.png"></image>
  4. <image class="bottom-image" src="/static/launch/bottom_str@3x.png"></image>
  5. </view>
  6. </template>
  7. <script>
  8. </script>
  9. <style lang="scss">
  10. .launch-screen {
  11. width: 100%;
  12. height: 100vh;
  13. display: flex;
  14. flex-direction: column;
  15. justify-content: space-between;
  16. align-items: center;
  17. .top-image {
  18. width: 80%;
  19. height: 280px;
  20. margin-top: 50px;
  21. }
  22. .bottom-image {
  23. width: 40%;
  24. height: 40px;
  25. margin-bottom: 20px;
  26. }
  27. }
  28. </style>