Home.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816
  1. <template>
  2. <div class="home">
  3. <swiperr :message="message"></swiperr>
  4. <div id="sale" class="liubai">
  5. <p class="saletitle">致力于互联网创新技术服务</p>
  6. <p class="salecontent">技术更跨界、创意更自由、服务更贴心</p>
  7. <div class="sale_content_son">
  8. <div v-for="(item, index) in saleArray" :key="index" class="pianyi-center">
  9. <div id="box1">
  10. <div id="box1-Up">
  11. <img :src="item.src" alt style="margin-top: 38px !important;" />
  12. <p style="margin-top: 20px !important;margin-bottom:20px;">{{ item.title }}</p>
  13. </div>
  14. <div id="box1-Dn">
  15. <ul>
  16. <li v-for="(itemson, index) in item.content" :key="index">
  17. <div class="yuandian"></div>
  18. <span style="display:block;text-align:left">{{ itemson.con }}</span>
  19. </li>
  20. </ul>
  21. </div>
  22. </div>
  23. </div>
  24. </div>
  25. </div>
  26. <div
  27. id="blurr"
  28. class="liubai"
  29. style="display:flex;justify-content:space-between; flex-wrap:wrap;"
  30. >
  31. <div id="pianyi" class="pianyi-center">
  32. <div class="blurrflex">
  33. <p>3</p>
  34. <p>年</p>
  35. </div>
  36. <div class="blurrtext">多年互联网创新服务经验</div>
  37. </div>
  38. <div class="pianyi-center">
  39. <div class="blurrflex">
  40. <p style="letter-spacing: 0.4px;">20</p>
  41. <p>+</p>
  42. </div>
  43. <div class="blurrtext">提供多样化服务类型</div>
  44. </div>
  45. <div class="pianyi-center">
  46. <div class="blurrflex">
  47. <p style="letter-spacing: 0.4px;">40</p>
  48. <p>+</p>
  49. </div>
  50. <div class="blurrtext">持续服务更多用户</div>
  51. </div>
  52. <div class="pianyi-center">
  53. <div class="blurrflex">
  54. <p style="letter-spacing: 1px;">12000</p>
  55. <p></p>
  56. </div>
  57. <div class="blurrtext">互联网创新业务市场庞大</div>
  58. </div>
  59. </div>
  60. <div id="bigexploit">
  61. <div id="exploit" class="liubai">
  62. <p class="saletitle">全新的开发模式</p>
  63. <p class="salecontent">高效、快速、减少花费</p>
  64. <div id="exploit-Box" style="display:flex;justify-content:space-between; flex-wrap:wrap;">
  65. <div id="box2">
  66. <div id="box2-Up">
  67. <img src="..\components\img\exploitpic1.png" alt />
  68. </div>
  69. <div id="box2-Dn">
  70. <p>一流的开发团队</p>
  71. </div>
  72. </div>
  73. <div id="box2">
  74. <div id="box2-Up">
  75. <img src="..\assets\插画2.png" alt />
  76. </div>
  77. <div id="box2-Dn">
  78. <p>可见的项目成本</p>
  79. </div>
  80. </div>
  81. <div id="box2">
  82. <div id="box2-Up">
  83. <img src="..\assets\插画3.png" alt />
  84. </div>
  85. <div id="box2-Dn">
  86. <p>可控的项目质量</p>
  87. </div>
  88. </div>
  89. </div>
  90. </div>
  91. </div>
  92. <div style="background-color: #FFFFFF;padding-top:80px;">
  93. <div id="fee" class="liubai">
  94. <p class="saletitle" style="margin-bottom:6px">崭新的收费模式</p>
  95. <p class="salecontent" style="margin-bottom:20px">确保收费简洁化、透明化</p>
  96. <div id="box3">
  97. <div id="box3-Left">
  98. <img src="..\components\img\fee-left.png" alt />
  99. </div>
  100. <div id="box3-Right">
  101. <div class="box3-Right-li">
  102. <img src="..\assets\平台1.png" class="piclog" />
  103. <img src="..\assets\+ 2.png" alt="+" class="picjia" />
  104. <img src="..\assets\平台2.png" class="piclog" />
  105. <img src="..\assets\= 2.png" alt="=" class="picdengyu" />
  106. <img src="..\assets\平台3.png" class="piclog" />
  107. </div>
  108. <div class="box3-Right-li">
  109. <div v-for="(item, index) in box3Arry" :key="index">
  110. <ul>
  111. <li>{{item.con}}</li>
  112. <li>{{item.zhu}}</li>
  113. </ul>
  114. </div>
  115. </div>
  116. </div>
  117. </div>
  118. </div>
  119. </div>
  120. <div style="background-image: linear-gradient(0deg, #0057cb 0%, #007bff 100%);">
  121. <div id="train" class="liubai">
  122. <p id="train-title1">灵活的人才培养方案</p>
  123. <p id="train-content1">免费的实习生培训计划、严格的实习生管理制度、真实的项目实战锻炼</p>
  124. <div class="train-pic-copy">
  125. <div id="train-pic" v-for="(item, index) in trainPicArry" :key="index">
  126. <div class="train-pic-con">
  127. <img :src="item.src" alt />
  128. <div class="duanhengxian"></div>
  129. <p>{{ item.con1 }}</p>
  130. <p>{{ item.con2 }}</p>
  131. </div>
  132. </div>
  133. </div>
  134. </div>
  135. </div>
  136. <div style="background-color: #FFFFFF;">
  137. <div id="client" class="liubai">
  138. <p class="saletitle">服务过的品牌客户</p>
  139. <p
  140. class="salecontent"
  141. style="margin-bottom:40px;margin-top:6px;height: 22px;"
  142. >SERVIER BRAND CUSTOMERS</p>
  143. <div id="client-Pic">
  144. <div style="display:flex;justify-content:space-between; flex-wrap:wrap;">
  145. <div v-for="(item, index) in clientArry" :key="index">
  146. <img :src="item.src" alt />
  147. </div>
  148. </div>
  149. </div>
  150. </div>
  151. </div>
  152. <home-footer></home-footer>
  153. </div>
  154. </template>
  155. <style scoped>
  156. @media only screen and (max-width: 479px) {
  157. .liubai {
  158. width: 83.3% !important;
  159. margin: auto 8.3% !important;
  160. }
  161. #box1 {
  162. margin-bottom: 30px;
  163. width: 77px !important;
  164. height: 150px !important;
  165. }
  166. #box1 p {
  167. font-size: 10px !important;
  168. }
  169. #box1 ul {
  170. display: none;
  171. }
  172. #blurr div:nth-child(4) {
  173. margin-bottom: 16px !important;
  174. }
  175. .blurrflex {
  176. margin-top: 16px !important;
  177. }
  178. .pianyi-center {
  179. margin: 0 auto !important;
  180. }
  181. #client-Pic img {
  182. margin: 20px auto !important;
  183. width: 150px !important;
  184. height: 69px !important;
  185. }
  186. #train-pic .train-pic-con p[data-v-fae5bece]:nth-child(3) {
  187. font-size: 19px !important;
  188. }
  189. #train-pic .train-pic-con p[data-v-fae5bece]:nth-child(4) {
  190. width: 150px !important;
  191. font-size: 14px !important;
  192. height: 50px;
  193. }
  194. #train-pic .train-pic-con img[data-v-fae5bece] {
  195. width: 22px !important;
  196. height: 22px !important;
  197. }
  198. #box2 {
  199. width: 100px !important;
  200. height: auto !important;
  201. margin: 30px auto !important;
  202. }
  203. #box2-Up {
  204. height: auto !important;
  205. }
  206. #box2-Dn p {
  207. line-height: 20px !important;
  208. font-size: 14px !important;
  209. }
  210. .saletitle {
  211. font-size: 19px !important;
  212. }
  213. .salecontent {
  214. margin-bottom: 10px !important;
  215. }
  216. #train-title1 {
  217. font-size: 19px !important;
  218. }
  219. #blurr p:nth-child(1) {
  220. font-size: 23px !important;
  221. }
  222. #box2 img {
  223. width: 100px !important;
  224. height: 81px !important;
  225. }
  226. #box3-Left {
  227. height: auto !important;
  228. margin-right: 10px !important;
  229. margin-bottom: 66px !important;
  230. }
  231. #box3-Left img {
  232. width: 137px !important;
  233. }
  234. .piclog {
  235. width: 40px !important;
  236. height: 40px !important;
  237. }
  238. .picjia {
  239. width: 7px !important;
  240. left: 19px !important;
  241. }
  242. .picdengyu {
  243. width: 7px !important;
  244. left: 19px !important;
  245. }
  246. .box3-Right-li ul {
  247. margin-top: 0px !important;
  248. margin-bottom: 20px !important;
  249. }
  250. .box3-Right-li ul li {
  251. overflow: hidden;
  252. text-overflow: ellipsis;
  253. white-space: nowrap;
  254. width: 100px;
  255. font-size: 13px !important;
  256. margin-top: 0px !important;
  257. }
  258. #blurr .blurrtext {
  259. width: 138px !important;
  260. }
  261. }
  262. @media only screen and (max-width: 1440px) {
  263. .liubai {
  264. width: 83.3% !important;
  265. margin: auto 8.3% !important;
  266. }
  267. }
  268. .liubai {
  269. width: 1200px;
  270. margin: 0 auto;
  271. }
  272. div#sale {
  273. width: 1200px;
  274. margin: 0 auto;
  275. }
  276. .saletitle {
  277. font-family: PingFangSC-Regular;
  278. font-size: 28px;
  279. color: #4a4a4a;
  280. letter-spacing: 0;
  281. margin-top: 80px;
  282. margin-bottom: 0px;
  283. }
  284. .salecontent {
  285. font-family: PingFangSC-Regular;
  286. font-size: 18px;
  287. color: #999999;
  288. letter-spacing: 0.2px;
  289. margin-top: 6px;
  290. margin-bottom: 60px;
  291. }
  292. .sale_content_son {
  293. display: flex;
  294. justify-content: space-between;
  295. flex-wrap: wrap;
  296. margin-bottom: 60px;
  297. }
  298. #blurr {
  299. width: 1200px;
  300. margin: 0 auto;
  301. background: #ffffff;
  302. box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.08);
  303. display: flex;
  304. justify-content: space-around;
  305. position: relative;
  306. z-index: 2;
  307. }
  308. #blurr div:nth-child(4) {
  309. margin-right: 62px;
  310. margin-bottom: 66px;
  311. }
  312. #pianyi {
  313. margin-left: 62px;
  314. }
  315. .blurrflex {
  316. display: flex;
  317. justify-content: center;
  318. margin-top: 60px;
  319. margin-left: 20px;
  320. }
  321. #blurr p {
  322. text-align: center;
  323. font-family: PingFangSC-Light;
  324. color: #4a4a4a;
  325. }
  326. #blurr p:nth-child(1) {
  327. font-size: 44px;
  328. letter-spacing: 2.44px;
  329. line-height: 48px;
  330. }
  331. #blurr p:nth-child(2) {
  332. font-size: 16px;
  333. letter-spacing: 0;
  334. line-height: 26px;
  335. margin-top: 3px;
  336. width: 20px;
  337. }
  338. #blurr .blurrtext {
  339. font-family: PingFangSC-Light;
  340. font-size: 16px;
  341. color: #999999;
  342. letter-spacing: 0;
  343. text-align: center;
  344. line-height: 26px;
  345. margin-top: 10px;
  346. width: 224px;
  347. }
  348. #bigexploit {
  349. width: auto;
  350. background-image: linear-gradient(
  351. 0deg,
  352. #e7f4fe 0%,
  353. #f2f5f8 64%,
  354. #f6f6f6 100%
  355. );
  356. z-index: 1;
  357. position: relative;
  358. margin-top: -100px;
  359. }
  360. #exploit {
  361. padding-top: 100px;
  362. }
  363. #exploit-Box {
  364. display: flex;
  365. }
  366. div#fee p {
  367. margin-top: 0px;
  368. margin-bottom: 0px;
  369. }
  370. div#train {
  371. padding-top: 80px;
  372. clear: both;
  373. /* height: 470px; */
  374. opacity: 0.9;
  375. background-image: linear-gradient(0deg, #0057cb 0%, #007bff 100%);
  376. }
  377. div#train p {
  378. margin-top: 0px;
  379. }
  380. div#client {
  381. padding-top: 80px;
  382. padding-bottom: 61px;
  383. }
  384. div#client img {
  385. width: 284px;
  386. height: 128px;
  387. }
  388. div#client p {
  389. margin-top: 0px;
  390. }
  391. #box1 {
  392. background: #ffffff;
  393. border: 1px solid #f2f2f2;
  394. width: 282px;
  395. height: 296px;
  396. }
  397. #box1 p {
  398. font-family: PingFangSC-Semibold;
  399. font-size: 20px;
  400. color: #4a4a4a;
  401. letter-spacing: 0;
  402. text-align: center;
  403. line-height: 28px;
  404. }
  405. div#box1-Up {
  406. background: #f6f6f6;
  407. height: 150px;
  408. font-family: PingFangSC-Semibold;
  409. font-size: 20px;
  410. color: #4a4a4a;
  411. letter-spacing: 0;
  412. text-align: center;
  413. line-height: 28px;
  414. }
  415. div#box1-Dn {
  416. font-family: PingFangSC-Light;
  417. font-size: 16px;
  418. color: #999999;
  419. letter-spacing: 0;
  420. text-align: justify;
  421. line-height: 26px;
  422. /* padding: 22px 28px; */
  423. }
  424. div#box1-Dn ul {
  425. margin: 20px 28px 22px 28px;
  426. padding-left: 0px;
  427. }
  428. div#box1-Dn ul li {
  429. list-style: none;
  430. text-indent: 0px;
  431. display: flex;
  432. }
  433. .yuandian {
  434. display: inline-block;
  435. border: 1px solid #999999;
  436. border-radius: 100%;
  437. width: 5px;
  438. height: 5px;
  439. background-color: #999999;
  440. vertical-align: super;
  441. position: relative;
  442. top: 12px;
  443. margin-right: 4px;
  444. }
  445. #box2 {
  446. margin-bottom: 62px;
  447. width: 360px;
  448. height: 330px;
  449. background: #1b90fb;
  450. }
  451. #box2 p {
  452. margin-left: 0px !important;
  453. text-align: center;
  454. font-family: PingFangSC-Regular;
  455. font-size: 24px;
  456. color: #ffffff !important;
  457. letter-spacing: 0.27px !important;
  458. margin-top: 1px;
  459. }
  460. div#box2-Up {
  461. height: 240px;
  462. background: #ffffff;
  463. }
  464. div#box2-Up img {
  465. size: 100%;
  466. height: 240px;
  467. width: 360px;
  468. background: #ffffff;
  469. }
  470. div#box2-Dn p {
  471. font-family: PingFangSC-Regular;
  472. font-size: 24px;
  473. color: #ffffff;
  474. line-height: 90px;
  475. letter-spacing: 0.27px;
  476. }
  477. div#box3 {
  478. display: flex;
  479. justify-content: space-between;
  480. flex-wrap: wrap;
  481. }
  482. div#box3-Left {
  483. width: 40%;
  484. height: 303px;
  485. float: left;
  486. margin: 67px 107px 110px 0px;
  487. }
  488. div#box3-Right {
  489. display: flex;
  490. }
  491. .box3-Right-li {
  492. display: flex;
  493. flex-direction: column;
  494. }
  495. .piclog {
  496. width: 120px;
  497. height: 120px;
  498. }
  499. .picjia {
  500. width: 17px;
  501. margin-top: 11px;
  502. margin-bottom: 12px;
  503. position: relative;
  504. left: 52px;
  505. }
  506. .picdengyu {
  507. width: 17px;
  508. margin-top: 15px;
  509. margin-bottom: 16px;
  510. position: relative;
  511. left: 52px;
  512. }
  513. .box3-Right-li ul {
  514. margin-bottom: 98px;
  515. padding-left: 30px;
  516. width: max-content;
  517. }
  518. .box3-Right-li div:nth-child(1) ul {
  519. margin-top: 29px;
  520. }
  521. .box3-Right-li div:nth-child(3) ul {
  522. margin-bottom: 0px;
  523. }
  524. div#box3-Right ul :first-child {
  525. list-style: none;
  526. font-family: PingFangSC-Regular;
  527. font-size: 20px;
  528. color: #1b90fb;
  529. letter-spacing: 0;
  530. line-height: 28px;
  531. }
  532. div#box3-Right ul :nth-child(2) {
  533. list-style: none;
  534. font-family: PingFangSC-Light;
  535. font-size: 16px;
  536. color: #999999;
  537. letter-spacing: 0;
  538. text-align: justify;
  539. line-height: 22px;
  540. margin-top: 12px;
  541. }
  542. #train-title1 {
  543. font-family: PingFangSC-Regular;
  544. font-size: 28px;
  545. color: #ffffff;
  546. letter-spacing: 0;
  547. margin-bottom: 6px;
  548. }
  549. #train-content1 {
  550. opacity: 0.6;
  551. font-family: PingFangSC-Regular;
  552. font-size: 18px;
  553. color: #ffffff;
  554. letter-spacing: 0.2px;
  555. margin-top: 6px;
  556. margin-bottom: 0px;
  557. }
  558. #train-pic {
  559. display: flex;
  560. justify-content: space-between;
  561. flex-wrap: wrap;
  562. }
  563. .train-pic-copy {
  564. display: flex;
  565. justify-content: space-between;
  566. flex-wrap: wrap;
  567. }
  568. #train-pic .train-pic-con img {
  569. width: 44px;
  570. height: 44px;
  571. text-align: center;
  572. margin: 60px auto 0px;
  573. }
  574. #train-pic .train-pic-con {
  575. display: flex;
  576. flex-direction: column;
  577. justify-content: center;
  578. }
  579. #train-pic .train-pic-con p:nth-child(3) {
  580. font-family: PingFangSC-Regular;
  581. font-size: 24px;
  582. color: #ffffff;
  583. letter-spacing: 0;
  584. text-align: center;
  585. line-height: 28px;
  586. margin-bottom: 20px;
  587. }
  588. #train-pic .train-pic-con p:nth-child(4) {
  589. opacity: 0.6;
  590. font-family: PingFangSC-Light;
  591. font-size: 16px;
  592. color: #ffffff;
  593. letter-spacing: 0;
  594. text-align: justify;
  595. line-height: 22px;
  596. width: 340px;
  597. margin: 0 0 64px;
  598. }
  599. .duanhengxian {
  600. opacity: 0.9;
  601. width: 40px;
  602. height: 2px;
  603. background: #ffffff;
  604. margin: 30px auto;
  605. }
  606. #client-Pic {
  607. margin-top: 40px;
  608. }
  609. #client-Pic div:nth-child(4) img {
  610. margin-bottom: 24px;
  611. }
  612. .home {
  613. text-align: left;
  614. width: 100%;
  615. margin: 0 auto;
  616. background: #ffffff;
  617. overflow: hidden;
  618. }
  619. #box {
  620. width: 280px;
  621. height: 296px;
  622. }
  623. #banner {
  624. background-color: goldenrod;
  625. }
  626. .slideshow {
  627. width: 100%;
  628. }
  629. .slideshow ul li {
  630. list-style: none;
  631. }
  632. .image-enter-to {
  633. transition: all 1s ease;
  634. transform: translateX(0);
  635. }
  636. .image-leave-active {
  637. transition: all 1s ease;
  638. transform: translateX(-100%);
  639. }
  640. .image-enter {
  641. transform: translateX(100%);
  642. }
  643. .image-leave {
  644. transform: translateX(0);
  645. }
  646. </style>
  647. <script>
  648. /* eslint-disable */
  649. // @ is an alias to /src
  650. import img1 from "../assets/banner.png";
  651. import img2 from "../assets/banner2.png";
  652. import img3 from "../assets/banner3.png";
  653. import HelloWorld from "@/components/HelloWorld.vue";
  654. import HomeFooter from "../components/footer.vue";
  655. import Carousel from "@/components/carousel.vue";
  656. import Swiperr from "@/components/swiperr.vue";
  657. import animated from "animate.css";
  658. export default {
  659. name: "home",
  660. components: {
  661. HomeFooter,
  662. Carousel,
  663. Swiperr
  664. },
  665. data() {
  666. return {
  667. timer: null, //定时器
  668. mark: 0, //比对图片索引的变量
  669. //轮播图数据
  670. message: [img1, img2, img3],
  671. imgArray: [img1, img2, img3],
  672. saleArray: [
  673. {
  674. src: require("../assets/1.png"),
  675. title: "助力新零售",
  676. content: [
  677. { con: "结合优秀硬件团队" },
  678. { con: "利用互联网优势" },
  679. { con: "完成基于物联网技术的新零售体系建立或推广" }
  680. ]
  681. },
  682. {
  683. src: require("../assets/2.png"),
  684. title: "政府信息化建设",
  685. content: [
  686. { con: "以精湛的互联网技术" },
  687. { con: "推动政府信息化建设" },
  688. { con: "提高行政效能" }
  689. ]
  690. },
  691. {
  692. src: require("../assets/3.png"),
  693. title: "传统互联网转型",
  694. content: [
  695. { con: "深入了解传统行业" },
  696. { con: "打破只做网络营销的传统思维" },
  697. { con: "设计开发全新业务模式" },
  698. { con: "依托传统产业原有资源" }
  699. ]
  700. },
  701. {
  702. src: require("../assets/4.png"),
  703. title: "自有产品",
  704. content: [
  705. { con: "股票自动交易系统" },
  706. { con: "汽车行业互联网舆情监控系统" }
  707. ]
  708. }
  709. ],
  710. trainPicArry: [
  711. {
  712. src: require("../assets/量身打造.png"),
  713. con1: "量身打造",
  714. con2:
  715. "面向互联网所需众多岗位,上班时间根据实习生自身情况决定,通过考核后在校也能办公。"
  716. },
  717. {
  718. src: require("../assets/严格.png"),
  719. con1: "严格管理",
  720. con2:
  721. "周六公司固定例会时间,多方位知识面为实习生开拓视野,每天工作时间实时线上记录打卡。"
  722. },
  723. {
  724. src: require("../assets/严格管理.png"),
  725. con1: "严格管理",
  726. con2:
  727. "知识培训外加真实项目实践,并有一对一导师指导,让实习生快速成长,独当一面。"
  728. }
  729. ],
  730. box3Arry: [
  731. {
  732. con: "平台工作者劳务费",
  733. zhu: "注:参与项目的所有工作者的赏月劳务费总和。"
  734. },
  735. {
  736. con: "平台工作者劳务费",
  737. zhu: "注:参与项目的所有工作者的赏月劳务费总和。"
  738. },
  739. {
  740. con: "平台工作者劳务费",
  741. zhu: "注:参与项目的所有工作者的赏月劳务费总和。"
  742. }
  743. ],
  744. clientArry: [
  745. {
  746. src: require("../assets/携程.png")
  747. },
  748. { src: require("../assets/李宁.png") },
  749. { src: require("../assets/金.png") },
  750. { src: require("../assets/广发.png") },
  751. {
  752. src: require("../assets/朗新.png")
  753. },
  754. { src: require("../assets/云.png") },
  755. { src: require("../assets/金关.png") },
  756. { src: require("../assets/携程.png") }
  757. // content: [
  758. // {
  759. // src: require("../assets/携程.png"),
  760. // src: require("../assets/李宁.png"),
  761. // src: require("../assets/金.png"),
  762. // src: require("../assets/广发.png")
  763. // }
  764. // ],
  765. // content: [
  766. // {
  767. // src: require("../assets/朗新.png"),
  768. // src: require("../assets/云.png"),
  769. // src: require("../assets/金关.png"),
  770. // src: require("../assets/携程.png")
  771. // }
  772. // ]
  773. ]
  774. };
  775. },
  776. //点击切换图片
  777. methods: {
  778. autoPlay() {
  779. this.mark++;
  780. if (this.mark === this.imgArray.length) {
  781. this.mark = 0;
  782. }
  783. },
  784. play() {
  785. this.timer = setInterval(this.autoPlay, 1500);
  786. },
  787. stop() {
  788. clearInterval(this.timer);
  789. },
  790. move() {
  791. this.timer = setInterval(this.autoPlay, 1500);
  792. }
  793. },
  794. created() {
  795. this.play();
  796. }
  797. };
  798. </script>