-
BINsrc/assets/img/banner/design/design.png
-
BINsrc/assets/img/banner/design/gongyebiaoti.png
-
BINsrc/assets/img/banner/design/xingongyesheji.png
-
BINsrc/assets/img/banner/onestop/back.png
-
BINsrc/assets/img/banner/onestop/biaotiback.png
-
BINsrc/assets/img/banner/onestop/renwu.png
-
10src/common/utils.js
-
7src/components/TopNav/index.vue
-
4src/store/modules/swiper.js
-
115src/views/Index/components/HeaderSwiper/SlideFive/index.vue
-
73src/views/Index/components/HeaderSwiper/SlideOne/index.vue
-
22src/views/Index/components/HeaderSwiper/index.vue
Before Width: 151 | Height: 37 | Size: 1.4 KiB |
Before Width: 360 | Height: 72 | Size: 7.2 KiB |
Before Width: 487 | Height: 84 | Size: 4.9 KiB |
After Width: 1920 | Height: 1080 | Size: 1.3 MiB |
After Width: 896 | Height: 99 | Size: 4.7 KiB |
After Width: 4154 | Height: 662 | Size: 540 KiB |
@ -1,10 +1,119 @@ |
|||
<template> |
|||
<div class="slide_five">slide_five</div> |
|||
<div class="wrap"> |
|||
<div class="slide_five" id="slide_five"> |
|||
<div class="header_c"> |
|||
<div class="title"> |
|||
<div class="left">研发、设计、量产</div> |
|||
<div class="right">一站式解决方案</div> |
|||
</div> |
|||
<div class="desc"> |
|||
外观是产品的外衣/结构是产品的骨骼/硬件是产品的肌肉/软件是产品的灵魂 |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="bottom_statement"> |
|||
<img :src="Factory" alt="design" class="factory" /> |
|||
</div> |
|||
</div> |
|||
<div class="main_img" id="main_img"> |
|||
<img :src="People" alt="people" class="people" /> |
|||
</div> |
|||
</div> |
|||
</template> |
|||
|
|||
<script setup></script> |
|||
<script setup> |
|||
import Factory from '@/assets/img/banner/factory.png' |
|||
import People from '@/assets/img/banner/onestop/renwu.png' |
|||
// import { ref, onMounted } from 'vue' |
|||
// import { handleScreenAuto } from '@/common/utils' |
|||
// onMounted(() => { |
|||
// handleScreenAuto(showEmpty, '#slide_five') |
|||
// window.onresize = handleScreenAuto(showEmpty, '#slide_five') |
|||
// }) |
|||
// const showEmpty = ref(false) |
|||
</script> |
|||
|
|||
<style scoped lang="scss"> |
|||
.slide_five { |
|||
.wrap { |
|||
width: 100%; |
|||
height: 100%; |
|||
background: url(../../../../../assets/img/banner/onestop/back.png) no-repeat; |
|||
background-size: 100% 100%; |
|||
position: relative; |
|||
.slide_five { |
|||
width: 100%; |
|||
height: 100%; |
|||
.header_c { |
|||
position: absolute; |
|||
top: 175px; |
|||
left: 50%; |
|||
transform: translate(-50%); |
|||
width: 893px; |
|||
.title { |
|||
width: 855px; |
|||
height: 77px; |
|||
display: flex; |
|||
border: solid 2px $theme_color; |
|||
overflow: hidden; |
|||
border-radius: 43px; |
|||
align-items: center; |
|||
margin-bottom: 50px; |
|||
.left { |
|||
width: 50%; |
|||
height: 100%; |
|||
display: flex; |
|||
background: $theme_color; |
|||
align-items: center; |
|||
justify-content: center; |
|||
font-size: 40px; |
|||
font-family: DFPYuanW5-GB; |
|||
font-weight: 400; |
|||
color: #ffffff; |
|||
} |
|||
.right { |
|||
width: 50%; |
|||
background: #fff; |
|||
height: 100%; |
|||
display: flex; |
|||
align-items: center; |
|||
justify-content: center; |
|||
font-size: 42px; |
|||
font-family: DFPYuanW7-GB; |
|||
font-weight: 400; |
|||
color: #000000; |
|||
} |
|||
} |
|||
.desc { |
|||
display: flex; |
|||
align-items: center; |
|||
justify-content: center; |
|||
font-size: 19px; |
|||
font-family: 'SourceHanSans'; |
|||
font-weight: 400; |
|||
color: #aeaeae; |
|||
} |
|||
} |
|||
.bottom_statement { |
|||
position: absolute; |
|||
left: 84px; |
|||
z-index: 999; |
|||
bottom: 75px; |
|||
.factory { |
|||
width: 165px; |
|||
height: 11px; |
|||
} |
|||
} |
|||
} |
|||
.main_img { |
|||
position: absolute; |
|||
left: 50%; |
|||
bottom: 0; |
|||
transform: translate(-50%); |
|||
|
|||
.people { |
|||
height: calc(100vh / 1.6); |
|||
width: 100vw; |
|||
} |
|||
} |
|||
} |
|||
</style> |