|
|
@ -25,7 +25,14 @@ |
|
|
|
/> |
|
|
|
<div class="img_wrap"> |
|
|
|
<img :src="Dian" class="img" alt="" /> |
|
|
|
<img :src="Accelerate" class="img" alt="" /> |
|
|
|
<div class="gif_wrap"> |
|
|
|
<img :src="Gif1" class="left_img" alt="" /> |
|
|
|
<img :src="SAccelerate" class="right_img" alt="" /> |
|
|
|
</div> |
|
|
|
<div class="gif_wrap"> |
|
|
|
<img :src="Gif2" class="left_img" alt="" /> |
|
|
|
<img :src="TAccelerate" class="right_img" alt="" /> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<AboutUs /> |
|
|
|
<Cooperation /> |
|
|
@ -46,6 +53,10 @@ import Dian from '@/static/img/hardware/dianji.png' |
|
|
|
import AboutUs from 'cpns/AboutUs.vue' |
|
|
|
import Cooperation from 'cpns/Cooperation' |
|
|
|
import Bottom from 'cpns/Bottom' |
|
|
|
import SAccelerate from '@/static/img/hardware/s-accelerate.png' |
|
|
|
import TAccelerate from '@/static/img/hardware/t-accelerate.png' |
|
|
|
import Gif1 from '@/static/img/hardware/1.gif' |
|
|
|
import Gif2 from '@/static/img/hardware/2.gif' |
|
|
|
import { ref } from 'vue' |
|
|
|
|
|
|
|
const isDrag = ref(false) |
|
|
@ -66,6 +77,21 @@ const handleRelease = e => { |
|
|
|
padding-bottom: $bottom-height; |
|
|
|
.img_wrap { |
|
|
|
padding: 0 7px; |
|
|
|
.gif_wrap { |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
margin-bottom: 5px; |
|
|
|
border-radius: 3px; |
|
|
|
overflow: hidden; |
|
|
|
.left_img { |
|
|
|
width: 133px; |
|
|
|
height: 67px; |
|
|
|
} |
|
|
|
.right_img { |
|
|
|
width: 63%; |
|
|
|
height: 67px; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
.img { |
|
|
|
width: 100%; |
|
|
|