You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
722 B

1 month ago
  1. <template>
  2. <view class="background">
  3. <view class="logo-text"> DeepChart </view>
  4. </view>
  5. </template>
  6. <script setup>
  7. import { onShow } from "@dcloudio/uni-app";
  8. onShow(() => {
  9. setTimeout(() => {
  10. uni.redirectTo({
  11. url: "/pages/start/select/select",
  12. animationType: "slide-in-right",
  13. animationDuration: 1000,
  14. });
  15. }, 3000);
  16. });
  17. </script>
  18. <style>
  19. .background {
  20. background: linear-gradient(180deg, #2a0c4d, #1d0836, #0d0218);
  21. width: 100vw;
  22. height: 100vh;
  23. }
  24. .logo-text {
  25. display: flex;
  26. justify-content: center;
  27. align-items: center;
  28. color: white;
  29. font-weight: bold;
  30. font-size: 24px;
  31. position: absolute;
  32. bottom: 5%;
  33. left: 50%;
  34. transform: translateX(-50%);
  35. }
  36. </style>