exit.uvue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <!--
  2. http://localhost:5174/custom/#/pages/yuedong/challenge/index?pagetype=challenge_result&status=fail
  3. https://oss-mbh5.colormaprun.com/custom/#/pages/yuedong/challenge/index?pagetype=challenge_result&status=fail
  4. -->
  5. <template>
  6. <view class="body">
  7. <view class="content">
  8. <view class="main">
  9. <view class="topLogo"></view>
  10. <view class="exit_game"></view>
  11. <view class="btmLogo"></view>
  12. </view>
  13. </view>
  14. <my-fab></my-fab>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. data() {
  20. return {
  21. }
  22. },
  23. computed: {
  24. },
  25. onLoad(event) { // 类型非必填,可自动推导
  26. },
  27. methods: {
  28. }
  29. }
  30. </script>
  31. <style>
  32. .body {
  33. display: flex;
  34. flex-direction: column;
  35. align-items: center;
  36. justify-content: center;
  37. }
  38. .content {
  39. position: relative;
  40. width: 100vw;
  41. background-color: #5e00d6;
  42. }
  43. .main {
  44. width: 100%;
  45. flex-direction: column;
  46. align-items: center;
  47. justify-content: flex-start;
  48. }
  49. .exit_game {
  50. width: 100%;
  51. height: 100vh;
  52. background-image: url("/static/yuedong/challenge/exit_game_bg.png");
  53. background-repeat: no-repeat;
  54. background-position-x: center;
  55. background-position-y: center;
  56. background-size: 100% auto;
  57. }
  58. .topLogo {
  59. position: absolute;
  60. width: 100%;
  61. height: 8vh;
  62. background-image: url("/static/yuedong/challenge/logo3.png");
  63. background-repeat: no-repeat;
  64. background-position-x: 40rpx;
  65. background-position-y: bottom;
  66. background-size: 360rpx auto;
  67. }
  68. .btmLogo {
  69. position: absolute;
  70. right: 50rpx;
  71. bottom: 50rpx;
  72. width: 100%;
  73. height: 8vh;
  74. background-image: url("/static/yuedong/challenge/ydryp.png");
  75. background-repeat: no-repeat;
  76. background-position-x: right;
  77. background-position-y: bottom;
  78. background-size: 360rpx auto;
  79. }
  80. </style>