believe.vue 5.6 KB

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