mirror of
https://gitee.com/TSpecific/tuniao-ui.git
synced 2026-06-07 03:53:57 +08:00
209 lines
5.9 KiB
Vue
209 lines
5.9 KiB
Vue
<template>
|
|
<view class="template-start">
|
|
<!-- 顶部自定义导航 -->
|
|
<tn-nav-bar fixed alpha customBack>
|
|
<view slot="back" class='tn-custom-nav-bar__back'
|
|
@click="goBack">
|
|
<text class='icon tn-icon-left'></text>
|
|
<text class='icon tn-icon-home-capsule-fill'></text>
|
|
</view>
|
|
</tn-nav-bar>
|
|
|
|
|
|
|
|
|
|
<swiper class="card-swiper" :circular="true"
|
|
:autoplay="false" duration="500" interval="5000" @change="cardSwiper">
|
|
<swiper-item v-for="(item,index) in swiperList" :key="index" :class="cardCur==index?'cur':''">
|
|
<view class="swiper-item image-banner" :style="'background-color: '+ item.color +''">
|
|
<image :src="item.url" mode="aspectFill" v-if="item.type=='image'" style="height: 100vh;width: 100vw;"></image>
|
|
</view>
|
|
<view class="swiper-item-png image-banner">
|
|
<image :src="item.pngurl" mode="widthFix" v-if="item.type=='image'"></image>
|
|
</view>
|
|
<view class="swiper-item-text">
|
|
<view class="tn-text-xxl tn-text-bold tn-color-white">{{item.name}}</view>
|
|
<view class="tn-text-xl tn-text-bold tn-color-white tn-padding-top-xs">{{item.text}}</view>
|
|
</view>
|
|
|
|
</swiper-item>
|
|
</swiper>
|
|
<view class="indication">
|
|
<block v-for="(item,index) in swiperList" :key="index">
|
|
<view class="spot" :class="cardCur==index?'active':''"></view>
|
|
</block>
|
|
</view>
|
|
<view class="go">
|
|
<tn-button :plain="true" shape="round" backgroundColor="#FFFFFF" fontColor="#FFFFFF" width="40vw" height="70rpx">立即体验</tn-button>
|
|
</view>
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import template_page_mixin from '@/libs/mixin/template_page_mixin.js'
|
|
export default {
|
|
name: 'TemplateStart',
|
|
mixins: [template_page_mixin],
|
|
data(){
|
|
return {
|
|
cardCur: 0,
|
|
swiperList: [{
|
|
id: 0,
|
|
type: 'image',
|
|
name: '总有你想不到的创意',
|
|
text: '海量分享',
|
|
color: '#00C3E3',
|
|
url: 'https://resource.tuniaokj.com/images/swiper/guide-bg1.jpg',
|
|
pngurl: 'https://resource.tuniaokj.com/images/swiper/c4d7.png'
|
|
}, {
|
|
id: 1,
|
|
type: 'image',
|
|
name: '寻找一起成长的小伙伴',
|
|
text: '愉快玩耍',
|
|
color: '#FE5141',
|
|
url: 'https://resource.tuniaokj.com/images/swiper/guide-bg2.jpg',
|
|
pngurl: 'https://resource.tuniaokj.com/images/swiper/c4d8.png'
|
|
}, {
|
|
id: 2,
|
|
type: 'image',
|
|
name: '更多彩蛋等你探索',
|
|
text: '酷炫多彩',
|
|
color: '#EF9A01',
|
|
url: 'https://resource.tuniaokj.com/images/swiper/guide-bg3.jpg',
|
|
pngurl: 'https://resource.tuniaokj.com/images/swiper/c4d9.png'
|
|
}, {
|
|
id: 3,
|
|
type: 'image',
|
|
name: '商业合作请联系作者',
|
|
text: '免费开源',
|
|
color: '#D960C7',
|
|
url: 'https://resource.tuniaokj.com/images/swiper/guide-bg4.jpg',
|
|
pngurl: 'https://resource.tuniaokj.com/images/swiper/c4d10.png'
|
|
}],
|
|
}
|
|
},
|
|
methods: {
|
|
// cardSwiper
|
|
cardSwiper(e) {
|
|
this.cardCur = e.detail.current
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '@/static/css/templatePage/custom_nav_bar.scss';
|
|
/* 轮播视觉差 start */
|
|
.card-swiper {
|
|
height: 100vh !important;
|
|
}
|
|
|
|
.card-swiper swiper-item {
|
|
width: 750rpx !important;
|
|
left: 0rpx;
|
|
box-sizing: border-box;
|
|
overflow: initial;
|
|
}
|
|
|
|
.card-swiper swiper-item .swiper-item {
|
|
width: 100%;
|
|
display: block;
|
|
height: 100%;
|
|
border-radius: 0rpx;
|
|
transform: scale(1);
|
|
transition: all 0.2s ease-in 0s;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.card-swiper swiper-item.cur .swiper-item {
|
|
transform: none;
|
|
transition: all 0.2s ease-in 0s;
|
|
}
|
|
|
|
.card-swiper swiper-item .swiper-item-png {
|
|
margin-top: -85vh;
|
|
display: block;
|
|
border-radius: 0rpx;
|
|
transform: translate(40rpx, 20rpx) scale(0.8, 0.8);
|
|
transition: all 0.6s ease 0s;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.card-swiper swiper-item.cur .swiper-item-png {
|
|
margin-top: -85vh;
|
|
transform: translate(0rpx, 0rpx) scale(1, 1);
|
|
transition: all 0.6s ease 0s;
|
|
|
|
}
|
|
|
|
.card-swiper swiper-item .swiper-item-text {
|
|
margin-top: 0rpx;
|
|
width: 100%;
|
|
display: block;
|
|
height: 50%;
|
|
border-radius: 10rpx;
|
|
transform: translate(30rpx, -40rpx) scale(0.7, 0.7);
|
|
transition: all 0.6s ease 0s;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.card-swiper swiper-item.cur .swiper-item-text {
|
|
margin-top: -60rpx;
|
|
width: 100%;
|
|
transform: translate(30rpx, 0rpx) scale(0.9, 0.9);
|
|
transition: all 0.6s ease 0s;
|
|
}
|
|
|
|
.image-banner{
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.image-banner image{
|
|
width: 100%;
|
|
}
|
|
|
|
/* 轮播指示点 start*/
|
|
.indication{
|
|
z-index: 9999;
|
|
width: 100%;
|
|
height: 36rpx;
|
|
position: fixed;
|
|
display:flex;
|
|
flex-direction:row;
|
|
align-items:center;
|
|
justify-content:center;
|
|
}
|
|
|
|
.spot{
|
|
background-color: #FFF;
|
|
opacity: 0.4;
|
|
width: 10rpx;
|
|
height: 10rpx;
|
|
border-radius: 20rpx;
|
|
margin: 0 8rpx !important;
|
|
right: -270rpx;
|
|
top: -180rpx;
|
|
position: relative;
|
|
}
|
|
|
|
.spot.active{
|
|
opacity: 1;
|
|
width: 30rpx;
|
|
background-color: #FFF;
|
|
}
|
|
|
|
/* 立即体验 start*/
|
|
.go{
|
|
z-index: 9999;
|
|
width: 100%;
|
|
position: fixed;
|
|
display:flex;
|
|
flex-direction:row;
|
|
align-items:center;
|
|
justify-content:center;
|
|
bottom: 10vh;
|
|
}
|
|
</style>
|