xkxBuy.html 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>朗读小咖秀</title>
  7. </head>
  8. <style>
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. }
  13. #container {
  14. overflow: hidden;
  15. width: 100%;
  16. height: 51.1733rem;
  17. margin-bottom: 1.8667rem;
  18. background: url('./img/bg.jpg') no-repeat;
  19. background-size: 100% 100%;
  20. }
  21. .commoditys {
  22. display: flex;
  23. align-items: center;
  24. justify-content: space-between;
  25. margin: 5.2267rem auto;
  26. width: 9.0133rem;
  27. height: 3.4667rem;
  28. padding: 14px 10px;
  29. box-sizing: border-box;
  30. border-radius: 20px;
  31. }
  32. .commodity {
  33. position: relative;
  34. width: 97px;
  35. height: 97px;
  36. border-radius: 6px;
  37. border: 2px solid white;
  38. }
  39. .active {
  40. position: absolute;
  41. width: 27px;
  42. height: 18px;
  43. right: 0;
  44. bottom: 0;
  45. }
  46. .aborder {
  47. border-color: #ff935e;
  48. }
  49. .c-1 {
  50. background: url('./img/299.png');
  51. background-size: contain;
  52. }
  53. .c-2 {
  54. background: url('./img/99.png');
  55. background-size: contain;
  56. }
  57. .c-3 {
  58. background: url('./img/15.png');
  59. background-size: contain;
  60. }
  61. .payBox {
  62. position: fixed;
  63. display: flex;
  64. align-items: center;
  65. justify-content: space-between;
  66. box-sizing: border-box;
  67. left: 0;
  68. bottom: 0;
  69. width: 100%;
  70. padding: 15px 18px;
  71. background: white;
  72. }
  73. .payBox .left {
  74. font-size: 0.48rem;
  75. }
  76. .price {
  77. color: #ff9108;
  78. font-size: 0.64rem;
  79. font-weight: bold;
  80. }
  81. .pay {
  82. padding: 0.1867rem 0.6933rem;
  83. background: #ff9108;
  84. color: white;
  85. font-weight: 500;
  86. border-radius: 0.6133rem;
  87. font-size: 0.48rem;
  88. }
  89. </style>
  90. <body>
  91. <div id="container">
  92. <div class="commoditys">
  93. <div :class="['commodity c-1', active==1?'aborder':'']" @click="selected(1)">
  94. <img src="./img/active.png" class="active" v-show="active==1" />
  95. </div>
  96. <div :class="['commodity c-2', active==2?'aborder':'']" @click="selected(2)">
  97. <img src="./img/active.png" class="active" v-show="active==2" />
  98. </div>
  99. <div :class="['commodity c-3', active==3?'aborder':'']" @click="selected(3)">
  100. <img src="./img/active.png" class="active" v-show="active==3" />
  101. </div>
  102. </div>
  103. <div class="payBox">
  104. <div class="left">
  105. 终身会员
  106. <span class="price">299</span>
  107. </div>
  108. <div class="pay">立即支付</div>
  109. </div>
  110. </div>
  111. </body>
  112. <script src="https://cdn.jsdelivr.net/npm/vue@2.5.16/dist/vue.js"></script>
  113. <script src="http://g.tbcdn.cn/mtb/lib-flexible/0.3.2/??flexible_css.js,flexible.js"></script>
  114. <script>
  115. let xhr = new XMLHttpRequest()
  116. let app = new Vue({
  117. el: '#container',
  118. data: {
  119. active: 1
  120. },
  121. mounted() {
  122. this.request('https://reader-api.efunbox.cn/wx/v3/product/learn')
  123. },
  124. methods: {
  125. selected(e) {
  126. this.active = e
  127. },
  128. request(url) {
  129. xhr.onreadystatechange = function () {
  130. if (xhr.readyState === XMLHttpRequest.DONE && xhr.status === 200) {
  131. console.log(xhr.responseText)
  132. }
  133. }
  134. xhr.open('get', url, true)
  135. xhr.send()
  136. }
  137. }
  138. })
  139. </script>
  140. </html>