index.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. <template>
  2. <div class="pb_content2" style="background: #fff; display: inline">
  3. <div class="pb_content_body">
  4. <div class="top">
  5. <div class="pk">> PK赛</div>
  6. <div class="right">
  7. <div class="hg" @click="goTo('/leader')"></div>
  8. <div class="ts" @click="dialogVisible1 = true"></div>
  9. </div>
  10. </div>
  11. <div class="logo"></div>
  12. <div class="games">
  13. <div @click="goTo('/twentyFour')">> 入门级</div>
  14. <div @click="goTo('/advanced')">> 进阶级</div>
  15. <div @click="goTo('/master')">> 大师级</div>
  16. <div @click="goTo('/fun')">> 奇趣级</div>
  17. </div>
  18. </div>
  19. <el-dialog
  20. title="24点游戏玩法介绍"
  21. :visible.sync="dialogVisible1"
  22. :append-to-body="true"
  23. width="80%"
  24. :before-close="handleClose"
  25. class="dialog_diy1"
  26. >
  27. <div style="font-size: 0.9rem;">24 点是把 4 个整数(一般是正整数)通过加减乘除运算,使最后的计算结果是 24 的一个数学游戏,可以考验人的智力和数学敏感性。任意抽取4个数字,用加、减、乘、除(可加括号)把牌面上的数算成 24。</div>
  28. <!-- <div>汇总数字得24则通关!</div> -->
  29. </el-dialog>
  30. </div>
  31. </template>
  32. <script>
  33. import "../../common/aws-sdk-2.235.1.min";
  34. export default {
  35. data() {
  36. return {
  37. dialogVisible1: false,
  38. };
  39. },
  40. computed: {
  41. playsinline() {
  42. let ua = navigator.userAgent.toLocaleLowerCase();
  43. // x5内核
  44. if (ua.match(/tencenttraveler/) != null || ua.match(/qqbrowse/) != null) {
  45. return false;
  46. } else {
  47. // ios端
  48. return true;
  49. }
  50. },
  51. },
  52. methods: {
  53. goBack() {
  54. document.getElementsByClassName("pb_content2")[0].style.display = "block";
  55. this.$router.isBack = true;
  56. if (window.history.length <= 1) {
  57. this.$router.push({ path: "/" });
  58. return false;
  59. } else {
  60. this.$router.go(-1);
  61. }
  62. },
  63. goTo(path) {
  64. this.$router.push(path);
  65. },
  66. handleClose(done) {
  67. done();
  68. },
  69. },
  70. created() {},
  71. };
  72. </script>
  73. <style scoped>
  74. .pb_content_body {
  75. font-size: 0.9rem;
  76. display: flex;
  77. flex-direction: column;
  78. margin: 0 auto;
  79. background-image: url("../../assets/twentyFour/sBg.png");
  80. background-size: 100% 100%;
  81. background-repeat: no-repeat;
  82. height: 100%;
  83. position: relative;
  84. }
  85. .pb_content_body div {
  86. margin: 0.5rem 0 0;
  87. }
  88. .pb_content_body div > img {
  89. width: 5rem;
  90. }
  91. .pb_content_body .van-cell {
  92. margin: 0;
  93. }
  94. .pk {
  95. background: #e4c449;
  96. border: 4px solid #fff;
  97. border-radius: 8px;
  98. /* width: 100px; */
  99. padding: 0.3rem 1rem;
  100. text-align: center;
  101. font-size: 1rem;
  102. /* height: 25px;
  103. line-height: 25px; */
  104. color: #fff;
  105. }
  106. .top {
  107. display: flex;
  108. justify-content: space-around;
  109. align-items: center;
  110. width: 100%;
  111. }
  112. .right {
  113. display: flex;
  114. flex-direction: row;
  115. justify-content: flex-end;
  116. align-items: center;
  117. width: 40%;
  118. }
  119. .hg {
  120. background-image: url(/static/img/hg.a65138c.png);
  121. background-size: 100% 100%;
  122. width: 30px;
  123. background-repeat: no-repeat;
  124. height: 30px;
  125. margin: 0 !important;
  126. }
  127. .ts {
  128. background-image: url("../../assets/twentyFour/ts.png");
  129. background-size: 100% 100%;
  130. width: 45px;
  131. height: 45px;
  132. background-repeat: no-repeat;
  133. }
  134. .right > div:nth-child(2) {
  135. margin: 0 0 0 15px !important;
  136. }
  137. .logo {
  138. height: 2rem;
  139. width: 80%;
  140. margin: 6rem auto 3rem auto !important;
  141. background-image: url(/static/img/logo.b64f47e.png);
  142. background-size: 100% 100%;
  143. background-repeat: no-repeat;
  144. }
  145. .games {
  146. margin: 2rem auto;
  147. display: flex;
  148. flex-direction: column;
  149. flex-wrap: nowrap;
  150. align-items: center;
  151. justify-content: center;
  152. }
  153. .games > div {
  154. background: #60a4e5;
  155. border: 4px solid #fff;
  156. border-radius: 8px;
  157. padding: 0.3rem 1rem;
  158. /* width: 100px; */
  159. text-align: center;
  160. font-size: 1.4rem;
  161. /* height: 30px;
  162. line-height: 30px; */
  163. color: #fff;
  164. cursor: pointer;
  165. }
  166. .dialog_diy1 >>> .el-dialog__header {
  167. background: #f6c14a;
  168. text-align: center;
  169. padding: 10px 0 !important;
  170. }
  171. .dialog_diy1 >>> .el-dialog__body {
  172. padding: 20px;
  173. }
  174. .dialog_diy1 >>> .el-dialog__title {
  175. color: #fff !important;
  176. }
  177. .dialog_diy1 >>> .el-dialog__headerbtn {
  178. background: url("../../assets/twentyFour/close.png");
  179. background-repeat: no-repeat;
  180. background-size: 100% 100%;
  181. top: 13px !important;
  182. right: 13px !important;
  183. }
  184. .dialog_diy1 >>> .el-dialog__close {
  185. color: transparent !important;
  186. }
  187. </style>