xcx.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. <template>
  2. <section class="XcxPage-container">
  3. <div class="banner-img ">
  4. <img src="http://res.training.luojigou.vip/Fqx9b6jma5oLcmANKrFUAlhyiV9e?imageView2/0/q/50|imageslim" alt="">
  5. <section class="label ">
  6. 小程序课堂
  7. </section>
  8. </div>
  9. <slot></slot>
  10. <slot name="label"></slot>
  11. <div class="content">
  12. <div class="content-first wow animate__animated animate__lightSpeedInLeft">
  13. <div class="left">
  14. <img src="http://res.training.luojigou.vip/Fr1pakSIAxm3LLHgAgMkHECAerAB?imageView2/0/q/50|imageslim" alt="">
  15. </div>
  16. <div class="right">
  17. <h4>轻松找到课堂入口 创造优质 </h4>
  18. <h4>学习体验</h4>
  19. <div class="desc">微信首页任务栏等60+小程序入口,让10亿用户 轻松发现你</div>
  20. </div>
  21. </div>
  22. <div class="content-seconed wow animate__animated animate__lightSpeedInRight">
  23. <div class="left">
  24. <h4>轻松找到课堂入口 创造优质 </h4>
  25. <h4>学习体验</h4>
  26. <div class="desc">微信首页任务栏等60+小程序入口,让10亿用户 轻松发现你</div>
  27. </div>
  28. <div class="right">
  29. <img src="http://res.training.luojigou.vip/FiiA82i4ori08A7Z8BbUdK8GMaxs?imageView2/0/q/50|imageslim" alt="">
  30. </div>
  31. </div>
  32. </div>
  33. </section>
  34. </template>
  35. <script>
  36. if (process.browser) {
  37. var {WOW} = require('wowjs')
  38. }
  39. export default {
  40. name: 'XcxPage',
  41. mounted () {
  42. if (process.browser) {
  43. new WOW({
  44. offset: 0,
  45. live: true
  46. }).init()
  47. }
  48. }
  49. }
  50. </script>
  51. <style scoped lang="scss">
  52. .XcxPage-container {
  53. .banner-img {
  54. position: relative;
  55. img {
  56. width: 100%;
  57. height: 881px;
  58. }
  59. .label {
  60. font-family:PingFangSC-Semibold,PingFang SC;
  61. font-weight:600;
  62. color: #ffffff;
  63. font-size: 80px;
  64. position: absolute;
  65. top: 50%;
  66. left: 50%;
  67. transform: translate(-50%, -50%);
  68. }
  69. }
  70. .content {
  71. width: 100%;
  72. height: 1792px;
  73. .content-first {
  74. display: flex;
  75. justify-content: space-between;
  76. padding: 173px 408px 138px 359px;
  77. color: #262626;
  78. background-color: #F7FBFF;
  79. .left {
  80. img {
  81. width: 576px;
  82. height: 585px;
  83. }
  84. }
  85. .right {
  86. display: flex;
  87. flex-direction: column;
  88. justify-content: center;
  89. h4 {
  90. font-size: 30px;
  91. }
  92. .desc {
  93. width: 385px;
  94. color: #3A3A3A;
  95. font-size: 18px;
  96. margin-top: 44px;
  97. line-height: 30px;
  98. }
  99. }
  100. }
  101. .content-seconed {
  102. display: flex;
  103. justify-content: space-between;
  104. padding: 153px 335px 138px 359px;
  105. color: #262626;
  106. .left {
  107. display: flex;
  108. flex-direction: column;
  109. justify-content: center;
  110. h4 {
  111. font-size: 30px;
  112. }
  113. .desc {
  114. width: 385px;
  115. color: #3A3A3A;
  116. font-size: 18px;
  117. margin-top: 44px;
  118. line-height: 30px;
  119. }
  120. }
  121. .right {
  122. img {
  123. width: 664px;
  124. height: 581px;
  125. }
  126. }
  127. }
  128. }
  129. }
  130. </style>