handheld.html 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1" />
  7. <title>手持式扫拖机</title>
  8. <script type="text/javascript" src="../js/vue.min.js"></script>
  9. <link rel="stylesheet" href="../css/bootstrap.min.css" />
  10. <link rel="stylesheet" href="../css/header.css" />
  11. <link rel="stylesheet" href="../css/normalize.css" />
  12. <link rel="stylesheet" href="../css/handheld.css" />
  13. </head>
  14. <body>
  15. <section id="app">
  16. <header>
  17. <div>
  18. <a class="left" href="/"><img src="../img/search.png" alt=""/></a>
  19. <h2>手持式</h2>
  20. <a class="right" href="./kind.html"><img src="../img/tools.png" alt=""></a>
  21. </div>
  22. </header>
  23. <section class="hanheld">
  24. <img src="../img/handheld.jpg" alt="" />
  25. </section>
  26. <section class="pw-list">
  27. <ul>
  28. <li
  29. v-for="(val,key) in tableList"
  30. :key="key"
  31. v-bind:class="{ active: key%2==1 }"
  32. >
  33. <div><img :src="val.imgUrl" alt="" /></div>
  34. <div class="content">
  35. <div>
  36. <section class="title">
  37. <span>0{{ key + 1 }}</span>
  38. <h5>{{ val.title }}</h5>
  39. </section>
  40. <section>
  41. <p>{{ val.content }}</p>
  42. </section>
  43. </div>
  44. </div>
  45. </li>
  46. </ul>
  47. </section>
  48. <!-- <footer>
  49. <section class="callme">
  50. <div class="telphone">
  51. <p>全国统一服务热线:</p>
  52. <span>电话:400-812-0098</span>
  53. </div>
  54. <div class="online">
  55. <img src="../img/call_03.jpg" alt="" />
  56. </div>
  57. </section>
  58. <section class="copy">
  59. <span>鄂ICP备19009716号 Copyright@2019 滴水科技版权所有</span>
  60. </section>
  61. </footer> -->
  62. </section>
  63. </body>
  64. <script type="text/javascript">
  65. new Vue({
  66. el: "#app",
  67. data() {
  68. return {
  69. tableList: [
  70. {
  71. id: 1,
  72. title: "您还在为机器工作时噪音大打扰到休息而烦心吗?",
  73. content:
  74. "DIISEA帮助您,声音小于60分贝,再也不用担心家人的睡眠情况,为您和您的家人带来更恬静、舒服的生活环境。",
  75. imgUrl: "../img/hand/hand_03.png"
  76. },
  77. {
  78. id: 2,
  79. title: "您还在为食物掉落在地上无法轻松处理干净而无奈吗?",
  80. content:
  81. "DIISEA帮助您,多种污渍一次性清理干净,超强洁力,替您快速解决数重麻烦,节省更多时间。",
  82. imgUrl: "../img/hand/hand_09.png"
  83. },
  84. {
  85. id: 3,
  86. title: "您还在为细菌的滋生而无助吗?",
  87. content:
  88. "DIISEA帮助您,从清洁的第一步开始就高效除菌,做到干净的同时还强力抑菌,成为您家居生活的小卫士。",
  89. imgUrl: "../img/hand/hand_11.png"
  90. },
  91. {
  92. id: 4,
  93. title: "您还在为留下水渍而重复工作吗?",
  94. content:
  95. "DIISEA帮助您,干湿垃圾同时处理,轻松的将固态和液态自动分离,让您的地面再也不出现难看水渍。",
  96. imgUrl: "../img/hand/hand_14.png"
  97. },
  98. {
  99. id: 5,
  100. title: "您还在为清洁工具操作麻烦而头疼吗?",
  101. content:
  102. "DIISEA帮助您,告别复杂程序化,简简单单一键搞定,为您提高清洁智能生活幸福感。",
  103. imgUrl: "../img/hand/hand_16.png"
  104. },
  105. {
  106. id: 6,
  107. title: "您还在被传统清洁工具的线“扯后腿”吗?",
  108. content:
  109. "DIISEA帮助您,无线操作,拒绝缠绕,随心洁净,做您生活中最称心的小助手。",
  110. imgUrl: "../img/hand/hand_18.png"
  111. },
  112. {
  113. id: 7,
  114. title: "您还在为自家主子的掉毛而绝望吗?",
  115. content:
  116. "DIISEA帮助您,不论何时,高效清理,为您与爱宠打造更干净卫生的相处环境,让您成为最优秀的铲屎官。",
  117. imgUrl: "../img/hand/hand_20.png"
  118. },
  119. {
  120. id: 8,
  121. title: "您还在为清洁工具外观不够美观而烦恼吗?",
  122. content:
  123. "DIISEA帮助您,造型别致,精美大气,陪您抢先一步开启清洁智能生态新生活。",
  124. imgUrl: "../img/hand/hand_23.png"
  125. }
  126. ]
  127. };
  128. },
  129. mounted() {},
  130. methods: {}
  131. });
  132. </script>
  133. </html>