believe.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. <template>
  2. <div class="wrapper-tools">
  3. <h2>9千万用户的信赖之选</h2>
  4. <div class="lists-container">
  5. <div class="lists">
  6. <div v-for="(item, index) in lists" :key="index" class="swiper-slide">
  7. <div class="list">
  8. <div class="header">
  9. <img :src="item.src" alt="item.title">
  10. <div class="context">
  11. <div class="title">{{ item.title }}</div>
  12. <Rate />
  13. </div>
  14. </div>
  15. <div class="des">
  16. {{ item.des }}
  17. </div>
  18. </div>
  19. </div>
  20. <div v-for="(item, index) in lists" :key="index" class="swiper-slide">
  21. <div class="list">
  22. <div class="header">
  23. <img :src="item.src" alt="item.title">
  24. <div class="context">
  25. <div class="title">{{ item.title }}</div>
  26. <Rate />
  27. </div>
  28. </div>
  29. <div class="des">
  30. {{ item.des }}
  31. </div>
  32. </div>
  33. </div>
  34. <div v-for="(item, index) in lists" :key="index" class="swiper-slide">
  35. <div class="list">
  36. <div class="header">
  37. <img :src="item.src" alt="item.title">
  38. <div class="context">
  39. <div class="title">{{ item.title }}</div>
  40. <Rate />
  41. </div>
  42. </div>
  43. <div class="des">
  44. {{ item.des }}
  45. </div>
  46. </div>
  47. </div>
  48. </div>
  49. </div>
  50. </div>
  51. </template>
  52. <script>
  53. import Array from '~/assets/images/PDFReaderPro/array.svg?inline'
  54. import Rate from '~/assets/images/PDFReaderPro/rate.svg?inline'
  55. export default {
  56. components: {
  57. Array,
  58. Rate
  59. },
  60. data() {
  61. return {
  62. lists: [
  63. {
  64. src: '/images/PDFReaderPro/teacher.png',
  65. title: '教授',
  66. des: '我每次都用这个App给我学生的论文批复。 简单的注释和高亮突出很不错,这比简单地在纸上乱涂乱画要干净得多。 现在我的学生会真正阅读我的反馈。'
  67. },
  68. {
  69. src: '/images/PDFReaderPro/analyst.png',
  70. title: '数据分析师',
  71. des: '已经使用该产品2年多了。 对我来说最方便的工具是表格工具,直接填写表格或将表格提取出来都可以,而且速度很快。'
  72. },
  73. {
  74. src: '/images/PDFReaderPro/stylist.png',
  75. title: '设计师',
  76. des: '我的朋友向我推荐了这款产品,在我使用这款 PDF 工具时,我发现它有很多功能可以协助我的工作。 我可以将作品转换为 PDF 文档,并为它们添加水印&密码进行保护。 '
  77. },
  78. {
  79. src: '/images/PDFReaderPro/assessor.png',
  80. title: '定损员',
  81. des: '为理赔进行文件归档,PDF Reader Pro帮助我把多个文档整理并合并到一个 PDF 中。并可以轻松地一次处理多个 PDF 文件,生成一份完整报告、汇总发票,减少整合时间。'
  82. },
  83. {
  84. src: '/images/PDFReaderPro/banker.png',
  85. title: '银行职员',
  86. des: '我拥有数十份交易、投资业绩报告和客户财务状况的信息文件,每个文档我都可以使用PDF Reader Pro进行书签、贝茨码设置以保证关键信息可以被检索到。'
  87. }
  88. ]
  89. }
  90. }
  91. }
  92. </script>
  93. <style lang="scss" scoped>
  94. @keyframes transateleftrow {
  95. 0% {
  96. transform: translateX(0%);
  97. }
  98. 100% {
  99. transform: translateX(-2040px);
  100. }
  101. }
  102. div.wrapper-tools {
  103. min-width: 1200px;
  104. h2 {
  105. margin-top: 80px;
  106. font-family: Source Han Sans CN;
  107. font-size: 36px;
  108. font-weight: 700;
  109. line-height: 56px;
  110. text-align: center;
  111. color: #192233;
  112. }
  113. .lists-container {
  114. margin-bottom: 120px;
  115. overflow: hidden;
  116. ::-webkit-scrollbar {
  117. scrollbar-width: none; /* Firefox */
  118. -ms-overflow-style: none; /* IE 10+ */
  119. display: none; /* Chrome Safari */
  120. }
  121. .lists {
  122. display: flex;
  123. width: 100%;
  124. animation: transateleftrow 20s linear infinite;
  125. &:hover {
  126. animation-play-state: paused;
  127. }
  128. }
  129. }
  130. .list {
  131. width: 384px;
  132. height: 360px;
  133. margin-top: 40px;
  134. margin-right: 24px;
  135. background: #F5F9FF;
  136. border-radius: 16px;
  137. padding: 40px;
  138. transition: all linear .5;
  139. &:hover {
  140. transform: translateY(-15px);
  141. }
  142. .header {
  143. display: flex;
  144. img {
  145. width: 64px;
  146. vertical-align: middle;
  147. }
  148. .context {
  149. margin-left: 16px;
  150. display: flex;
  151. flex-direction: column;
  152. justify-content: center;
  153. .title {
  154. font-family: Source Han Sans CN;
  155. font-size: 18px;
  156. font-weight: 700;
  157. line-height: 24px;
  158. color: #192233;
  159. margin-bottom: 8px;
  160. }
  161. }
  162. }
  163. .des {
  164. margin-top: 32px;
  165. font-family: Source Han Sans CN;
  166. font-size: 16px;
  167. line-height: 32px;
  168. color: #404754;
  169. }
  170. }
  171. }
  172. </style>