智莺站长PC端官网代码, vite-vue
 
 
 

285 linhas
5.7 KiB

  1. <template>
  2. <div class="download-box" ref="pronbit">
  3. <div class="title">
  4. <span>下载软件地址</span>
  5. </div>
  6. <div
  7. class="download-bg"
  8. :style="'background:url(' + mod.bgImage + ')'"
  9. v-show="isShow"
  10. >
  11. <div class="mainImg-box" style="float: right">
  12. <img :src="mod.mainImage" style="width: 100%" alt="" />
  13. </div>
  14. <div class="mainRight-box" style="float: left">
  15. <div class="modLogo-text">
  16. <img class="modLogo" :src="mod.applyLogo" alt="" />
  17. <span>{{ mod.mainText }}</span>
  18. </div>
  19. <div class="subText">{{ mod.subText }}</div>
  20. <div class="download-code">
  21. <div class="downloadImg">
  22. <div
  23. class="downloadImg-box"
  24. :style="getHoversColor"
  25. @click="downloadLink(linkData.iosLink)"
  26. >
  27. <img
  28. :src="mod.iosDownloadBtn"
  29. style="width: 42px; height: 42px"
  30. alt=""
  31. />
  32. <div style="margin-left: 10px">IPhone下载</div>
  33. </div>
  34. <div
  35. class="downloadImg-box"
  36. :style="getHoversColor"
  37. @click="downloadLink(linkData.androidLink)"
  38. >
  39. <img
  40. :src="mod.androidDownloadBtn"
  41. style="width: 42px; height: 42px"
  42. alt=""
  43. />
  44. <div style="margin-left: 10px">Android下载</div>
  45. </div>
  46. </div>
  47. <div class="download-content-code">
  48. <img class="modQrCde" :src="mod.qrcode" alt="" />
  49. <div>扫一扫轻松下载</div>
  50. </div>
  51. </div>
  52. </div>
  53. </div>
  54. </div>
  55. </template>
  56. <script>
  57. export default {
  58. computed: {
  59. getHoversColor: function () {
  60. return {
  61. "--text-color": this.mod.unSelectTextColor,
  62. "--text-color-hover": this.mod.selectTextColor,
  63. "--background-color": this.mod.unSelectBgColor,
  64. "--background-color-hover": this.mod.selectBgColor,
  65. "--box-shadow-color-hover": this.mod.selectBgColor + "4D",
  66. };
  67. },
  68. },
  69. data() {
  70. return {
  71. winHeight: 0,
  72. isShow: false,
  73. };
  74. },
  75. props: {
  76. mod: {
  77. type: Object,
  78. default: () => {},
  79. },
  80. linkData: {
  81. tpye: Object,
  82. default: () => {},
  83. },
  84. },
  85. created() {
  86. console.log(this.linkData)
  87. window.addEventListener("scroll", this.handleScrollx, true);
  88. this.winHeight =
  89. document.documentElement.clientHeight / 2 ||
  90. document.body.clientHeight / 2;
  91. },
  92. methods: {
  93. downloadLink: function (link) {
  94. window.open(link);
  95. },
  96. handleScrollx() {
  97. if (this.winHeight > this.$refs.pronbit.getBoundingClientRect().top) {
  98. this.isShow = true;
  99. window.removeEventListener("scroll", this);
  100. }
  101. },
  102. },
  103. };
  104. </script>
  105. <style scoped>
  106. .download-box {
  107. width: 1200px;
  108. height: 610px;
  109. margin: 0 auto;
  110. display: flex;
  111. flex-flow: column;
  112. }
  113. .title {
  114. color: #0f0f0f;
  115. font-size: 26px;
  116. font-weight: bold;
  117. display: flex;
  118. justify-content: center;
  119. align-items: center;
  120. margin-bottom: 55px;
  121. letter-spacing: 5px;
  122. }
  123. .title::after {
  124. content: "";
  125. width: 12px;
  126. height: 12px;
  127. background: #ff4242;
  128. border-radius: 50%;
  129. margin-left: 5px;
  130. }
  131. .download-bg {
  132. width: 100%;
  133. height: 520px;
  134. background-size: 100% 100% !important;
  135. background-repeat: no-repeat;
  136. box-sizing: border-box;
  137. overflow: hidden;
  138. padding: 94px 110px 0;
  139. opacity: 0;
  140. animation: aniamtionDownload 1.2s ease-in-out forwards;
  141. }
  142. @keyframes aniamtionDownload {
  143. 100% {
  144. opacity: 1;
  145. }
  146. }
  147. .mainImg-box {
  148. width: 344px;
  149. position: relative;
  150. animation: aniamtionMainImg 1.2s forwards;
  151. transform: translateY(600px);
  152. }
  153. @keyframes aniamtionMainImg {
  154. 100% {
  155. transform: translateX(0);
  156. }
  157. }
  158. .mainImg-box::after {
  159. content: "";
  160. height: 100px;
  161. background: linear-gradient(
  162. rgba(255, 255, 255, 0) 0%,
  163. rgb(255, 255, 255) 100%
  164. );
  165. width: 100%;
  166. top: 326px;
  167. z-index: 99;
  168. position: absolute;
  169. left: 0px;
  170. }
  171. .mainRight-box {
  172. display: flex;
  173. flex-flow: column;
  174. transform: translateX(-220px);
  175. animation: aniamtionMainRight 1.2s ease-in-out forwards;
  176. }
  177. @keyframes aniamtionMainRight {
  178. 100% {
  179. transform: translateX(0px);
  180. }
  181. }
  182. .modLogo-text {
  183. display: flex;
  184. color: #333333;
  185. font-size: 40px;
  186. font-weight: bold;
  187. align-items: center;
  188. margin-top: 14px;
  189. }
  190. .modLogo {
  191. margin-right: 18px;
  192. width: 60px;
  193. height: 60px;
  194. border-radius: 5px;
  195. }
  196. .subText {
  197. margin-top: 12px;
  198. font-size: 20px;
  199. color: #999999;
  200. white-space: pre-line;
  201. }
  202. .download-code {
  203. display: flex;
  204. margin-top: 26px;
  205. }
  206. .downloadImg {
  207. display: flex;
  208. flex-flow: column;
  209. margin-right: 20px;
  210. width: 222px;
  211. justify-content: space-between;
  212. }
  213. .download-content-code {
  214. width: 135px;
  215. height: 170px;
  216. background: #ffffff;
  217. border-radius: 10px;
  218. box-sizing: border-box;
  219. padding: 10px;
  220. color: #333333;
  221. font-size: 14px;
  222. display: flex;
  223. flex-flow: column;
  224. align-items: center;
  225. }
  226. .modQrCde {
  227. width: 100%;
  228. margin-bottom: 12px;
  229. border-radius: 3px;
  230. }
  231. .downloadImg-box {
  232. width: 222px;
  233. height: 72px;
  234. display: flex;
  235. align-items: center;
  236. box-sizing: border-box;
  237. padding-left: 15px;
  238. border-radius: 10px;
  239. color: var(--text-color);
  240. background: var(--background-color);
  241. box-shadow: 0px;
  242. transition: color 0.25s, background-color 0.25s, box-shadow 0.25s;
  243. cursor: pointer;
  244. }
  245. .downloadImg-box:hover {
  246. color: var(--text-color-hover);
  247. background: var(--background-color-hover);
  248. box-shadow: 0px 2px 30px 0px var(--box-shadow-color-hover);
  249. transition: color 0.35s, background-color 0.35s, box-shadow 0.35s;
  250. }
  251. @media screen and (max-width: 1500px) {
  252. .mainImg-box {
  253. width: 300px;
  254. }
  255. }
  256. </style>