| 123456789101112131415161718192021222324252627282930 |
- <template>
- <view class="launch-screen">
- <image class="top-image" src="/static/launch/bg1@3x.png"></image>
- <image class="bottom-image" src="/static/launch/bottom_str@3x.png"></image>
- </view>
- </template>
- <script>
- </script>
- <style lang="scss">
- .launch-screen {
- width: 100%;
- height: 100vh;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: center;
- .top-image {
- width: 80%;
- height: 280px;
- margin-top: 50px;
- }
- .bottom-image {
- width: 40%;
- height: 40px;
- margin-bottom: 20px;
- }
- }
- </style>
|