新版梦工厂手机端官网
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

84 lines
2.2 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. <template>
  2. <div class="hardware_home_container">
  3. <Swiper page="hardware" />
  4. <CaseShow />
  5. <div class="img_wrap">
  6. <img :src="Hard" class="img" alt="" />
  7. </div>
  8. <HeadLine
  9. title="合作过的"
  10. themeTitle="芯片原厂"
  11. :flip="true"
  12. line1="医疗企业 互联网公司 智能硬件公司 科研院所 工业自动化企业"
  13. />
  14. <img :src="Chip" class="img" alt="" />
  15. <img :src="Wu" class="img" alt="" />
  16. <!-- <Track /> -->
  17. <HeadLine
  18. title="专家"
  19. themeTitle="电机控制"
  20. line1="自主研发电机驱动器,让控制更加精准"
  21. />
  22. <div class="img_wrap">
  23. <img :src="Dian" class="img" alt="" />
  24. <div class="gif_wrap">
  25. <img :src="Gif2" class="left_img" alt="" />
  26. <img :src="SAccelerate" class="right_img" alt="" />
  27. </div>
  28. <div class="gif_wrap">
  29. <img :src="Gif1" class="left_img" alt="" />
  30. <img :src="TAccelerate" class="right_img" alt="" />
  31. </div>
  32. </div>
  33. <AboutUs />
  34. <Cooperation />
  35. </div>
  36. </template>
  37. <script setup>
  38. import Swiper from 'cpns/Swiper'
  39. import CaseShow from 'cpns/CaseShow'
  40. import Hard from '@/static/img/hardware/hardware.png'
  41. import Chip from '@/static/img/hardware/chip.png'
  42. import HeadLine from 'cpns/HeadLine'
  43. import Track from 'cpns/Track'
  44. import Wu from '@/static/img/hardware/wulianwang.png'
  45. import Dian from '@/static/img/hardware/dianji.png'
  46. import AboutUs from 'cpns/AboutUs.vue'
  47. import Cooperation from 'cpns/Cooperation'
  48. import Bottom from 'cpns/Bottom'
  49. import SAccelerate from '@/static/img/hardware/s-accelerate.png'
  50. import TAccelerate from '@/static/img/hardware/t-accelerate.png'
  51. import Gif1 from '@/static/img/hardware/1.gif'
  52. import Gif2 from '@/static/img/hardware/2.gif'
  53. </script>
  54. <style lang="scss" scoped>
  55. .hardware_home_container {
  56. background: #f5f5f5;
  57. max-width: 100vw;
  58. overflow: hidden;
  59. .img_wrap {
  60. padding: 0 7px;
  61. .gif_wrap {
  62. display: flex;
  63. align-items: center;
  64. margin-bottom: 5px;
  65. border-radius: 3px;
  66. overflow: hidden;
  67. .left_img {
  68. width: 133px;
  69. height: 67px;
  70. }
  71. .right_img {
  72. width: 63%;
  73. height: 67px;
  74. }
  75. }
  76. }
  77. .img {
  78. width: 100%;
  79. height: auto;
  80. }
  81. }
  82. </style>