teacher.vue 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  1. <template>
  2. <section class="Teacher-container">
  3. <div class="banner-img">
  4. <img
  5. :src="bannerImg"
  6. alt=""
  7. >
  8. <section class="label">教师APP</section>
  9. </div>
  10. <slot></slot>
  11. <slot name="label"></slot>
  12. <div class="content">
  13. <img
  14. class="bg-img"
  15. src="http://res.training.luojigou.vip/FptKxSHKx-s710eoLowQzeaOIDrZ?imageView2/0/q/50|imageslim"
  16. alt=""
  17. >
  18. <div class="content-list">
  19. <div class="content-list-one wow animate__animated animate__lightSpeedInRight">
  20. <div class="left">
  21. <div class="label">教师端APP使教师更好管 理,记录宝宝成长</div>
  22. <div class="desc">点击下方下载苹果端和安卓端app,立即体验</div>
  23. <div class="download">
  24. <img
  25. class="cp"
  26. src="http://res.training.luojigou.vip/Fl_0R6Bwy75ByXLhmm2b1cpknZEv?imageView2/0/q/50|imageslim"
  27. alt=""
  28. >
  29. <img
  30. class="cp"
  31. src="http://res.training.luojigou.vip/FvhOJGHagsZ2wuo3Fc3YAuL_z_g0?imageView2/0/q/50|imageslim"
  32. alt=""
  33. >
  34. </div>
  35. </div>
  36. <div class="right">
  37. <img
  38. src="http://res.training.luojigou.vip/FsvUZCVqc4Buqv5lzX-LvFfnNwip?imageView2/0/q/50|imageslim"
  39. alt=""
  40. >
  41. </div>
  42. </div>
  43. <div class="content-list-two wow animate__animated animate__lightSpeedInLeft">
  44. <div class="left">
  45. <img
  46. src="http://res.training.luojigou.vip/FizSPHT_QRzPSwGd9vTZzh40E_39?imageView2/0/q/50|imageslim"
  47. alt=""
  48. >
  49. </div>
  50. <div class="right">
  51. <div class="label">购买课程,更加便捷流畅的 抢课体验</div>
  52. <div class="desc">优化金刚区图标入口分类,丰富课程展现,节 省操作时间,提高用户体验</div>
  53. </div>
  54. </div>
  55. <div class="content-list-three wow animate__animated animate__lightSpeedInRight">
  56. <div class="left">
  57. <div class="label">购物商城,精简入口, 丰富内容</div>
  58. <div class="desc">更快速便捷购买到自己需要的书籍资料</div>
  59. </div>
  60. <div class="right">
  61. <img
  62. src="http://res.training.luojigou.vip/FuEKg4hF998JPuy742NZvgYoAiYt?imageView2/0/q/50|imageslim"
  63. alt=""
  64. >
  65. </div>
  66. </div>
  67. <div class="content-list-four wow animate__animated animate__lightSpeedInLeft">
  68. <div class="left">
  69. <img
  70. src="http://res.training.luojigou.vip/FrmwkZkCodJnyC1O8eyIUyRyZqjD?imageView2/0/q/50|imageslim"
  71. alt=""
  72. >
  73. </div>
  74. <div class="right">
  75. <div class="label">购物商城,展现逻辑狗的系 列产品</div>
  76. <div class="desc">精细的产品分类,你最短时间找到自己需要的 产品</div>
  77. </div>
  78. </div>
  79. <div class="content-list-five wow animate__animated animate__lightSpeedInRight">
  80. <div class="left">
  81. <div class="label">查看更加便捷的学习方式</div>
  82. <div class="desc">课程下载到app,随时随地自由学习</div>
  83. </div>
  84. <div class="right">
  85. <img
  86. src="http://res.training.luojigou.vip/Fr03YUbwfy49vSDg5gNyEgNMy9Th?imageView2/0/q/50|imageslim"
  87. alt=""
  88. >
  89. </div>
  90. </div>
  91. </div>
  92. </div>
  93. </section>
  94. </template>
  95. <script>
  96. if (process.browser) {
  97. var { WOW } = require("wowjs");
  98. }
  99. export default {
  100. name: "TeacherPage",
  101. data() {
  102. return {
  103. // showList,
  104. bannerImg: require('~/assets/images/products/banner-app2.png')
  105. };
  106. },
  107. mounted() {
  108. if (process.browser) {
  109. new WOW({
  110. offset: 0,
  111. live: true,
  112. }).init();
  113. }
  114. },
  115. };
  116. </script>
  117. <style scoped lang="scss">
  118. .Teacher-container {
  119. .banner-img {
  120. position: relative;
  121. img {
  122. width: 100%;
  123. height: 595px;
  124. }
  125. .label {
  126. font-family: PingFangSC-Semibold, PingFang SC;
  127. font-weight: 600;
  128. color: #ffffff;
  129. font-size: 80px;
  130. position: absolute;
  131. top: 50%;
  132. left: 50%;
  133. transform: translate(-50%, -50%);
  134. }
  135. }
  136. .content {
  137. position: relative;
  138. z-index: 0;
  139. top: -653px;
  140. img {
  141. width: 100%;
  142. height: 5210px;
  143. object-fit: cover;
  144. // position: absolute;
  145. // z-index: 0;
  146. }
  147. .content-list {
  148. width: 100%;
  149. position: absolute;
  150. top: 883px;
  151. left: 0;
  152. padding: 0 344px;
  153. box-sizing: border-box;
  154. z-index: 2;
  155. .content-list-one {
  156. display: flex;
  157. justify-content: space-between;
  158. .right {
  159. img {
  160. width: 601px;
  161. height: 586px;
  162. }
  163. }
  164. .left {
  165. display: flex;
  166. flex-direction: column;
  167. justify-content: center;
  168. .label {
  169. width: 369px;
  170. height: 84px;
  171. color: #262626;
  172. font-size: 30px;
  173. font-family: PingFangSC-Semibold, PingFang SC;
  174. font-weight: 600;
  175. }
  176. .desc {
  177. margin-top: 42px;
  178. font-size: 18px;
  179. font-family: PingFangSC-Regular, PingFang SC;
  180. font-weight: 400;
  181. color: rgba(58, 58, 58, 1);
  182. }
  183. .download {
  184. margin-top: 81px;
  185. display: flex;
  186. flex-direction: column;
  187. justify-content: space-between;
  188. img {
  189. width: 161px;
  190. height: 41px;
  191. }
  192. }
  193. .download img:first-child {
  194. margin-bottom: 25px;
  195. }
  196. }
  197. }
  198. .content-list-two {
  199. display: flex;
  200. justify-content: space-between;
  201. margin-top: 291px;
  202. .left {
  203. img {
  204. width: 601px;
  205. height: 586px;
  206. }
  207. }
  208. .right {
  209. display: flex;
  210. flex-direction: column;
  211. justify-content: center;
  212. .label {
  213. width: 369px;
  214. height: 84px;
  215. color: #262626;
  216. font-size: 30px;
  217. font-family: PingFangSC-Semibold, PingFang SC;
  218. font-weight: 600;
  219. }
  220. .desc {
  221. width: 388px;
  222. margin-top: 42px;
  223. font-size: 18px;
  224. font-family: PingFangSC-Regular, PingFang SC;
  225. font-weight: 400;
  226. color: rgba(58, 58, 58, 1);
  227. }
  228. }
  229. }
  230. .content-list-three {
  231. display: flex;
  232. justify-content: space-between;
  233. margin-top: 291px;
  234. .right {
  235. img {
  236. width: 601px;
  237. height: 586px;
  238. }
  239. }
  240. .left {
  241. display: flex;
  242. flex-direction: column;
  243. justify-content: center;
  244. .label {
  245. width: 369px;
  246. height: 84px;
  247. color: #262626;
  248. font-size: 30px;
  249. font-family: PingFangSC-Semibold, PingFang SC;
  250. font-weight: 600;
  251. }
  252. .desc {
  253. width: 388px;
  254. margin-top: 42px;
  255. font-size: 18px;
  256. font-family: PingFangSC-Regular, PingFang SC;
  257. font-weight: 400;
  258. color: rgba(58, 58, 58, 1);
  259. }
  260. }
  261. }
  262. .content-list-four {
  263. display: flex;
  264. justify-content: space-between;
  265. margin-top: 291px;
  266. .left {
  267. img {
  268. width: 601px;
  269. height: 586px;
  270. }
  271. }
  272. .right {
  273. display: flex;
  274. flex-direction: column;
  275. justify-content: center;
  276. .label {
  277. width: 369px;
  278. height: 84px;
  279. color: #262626;
  280. font-size: 30px;
  281. font-family: PingFangSC-Semibold, PingFang SC;
  282. font-weight: 600;
  283. }
  284. .desc {
  285. width: 388px;
  286. margin-top: 42px;
  287. font-size: 18px;
  288. font-family: PingFangSC-Regular, PingFang SC;
  289. font-weight: 400;
  290. color: rgba(58, 58, 58, 1);
  291. }
  292. }
  293. }
  294. .content-list-five {
  295. display: flex;
  296. justify-content: space-between;
  297. margin-top: 291px;
  298. .right {
  299. img {
  300. width: 601px;
  301. height: 586px;
  302. }
  303. }
  304. .left {
  305. display: flex;
  306. flex-direction: column;
  307. justify-content: center;
  308. .label {
  309. width: 369px;
  310. height: 84px;
  311. color: #262626;
  312. font-size: 30px;
  313. font-family: PingFangSC-Semibold, PingFang SC;
  314. font-weight: 600;
  315. }
  316. .desc {
  317. width: 388px;
  318. margin-top: 42px;
  319. font-size: 18px;
  320. font-family: PingFangSC-Regular, PingFang SC;
  321. font-weight: 400;
  322. color: rgba(58, 58, 58, 1);
  323. }
  324. }
  325. }
  326. }
  327. }
  328. }
  329. .cp {
  330. cursor: pointer;
  331. }
  332. </style>