mirror of
https://gitee.com/TSpecific/tuniao-ui.git
synced 2026-06-08 12:33:17 +08:00
806 lines
25 KiB
Vue
806 lines
25 KiB
Vue
<template>
|
|
<view class="template-money tn-safe-area-inset-bottom">
|
|
<!-- 顶部自定义导航 -->
|
|
<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>
|
|
<view class="top-backgroup">
|
|
<image src='https://resource.tuniaokj.com/images/money/money-bg.jpg' mode='heightFix' class='backgroud-image'></image>
|
|
</view>
|
|
<swiper class="card-swiper" :current="cardCur" :circular="true"
|
|
:autoplay="true" 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">
|
|
<image :src="item.url" mode="heightFix" v-if="item.type=='image'" ></image>
|
|
</view>
|
|
<view class="swiper-item-text tn-text-center">
|
|
<view class="tn-text-bold tn-padding-top-xs tn-color-brown">
|
|
<text class="tn-icon-copy tn-padding-right-xs"></text>
|
|
{{item.name}}
|
|
<text class="tn-icon-copy tn-padding-left-xs"></text>
|
|
</view>
|
|
</view>
|
|
|
|
</swiper-item>
|
|
</swiper>
|
|
|
|
<view class="indication">
|
|
<block v-for="(item,index) in swiperList" :key="index">
|
|
<view class="spot tn-text-center tn-padding-top-sm tn-shadow-blur tn-color-red" :class="cardCur==index?'active':''" @tap.stop="handleSwiperClick(index)">
|
|
<view class="tn-icon-lucky-money-fill tn-text-xxl icon-text"></view>
|
|
<view class="">{{item.text}}</view>
|
|
<view class="tn-text-sm">{{item.get}}</view>
|
|
</view>
|
|
</block>
|
|
<view class="" style="background-image:url('https://resource.tuniaokj.com/images/money/bgpng.png');
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
position: absolute;
|
|
top: -58vh;
|
|
left: 0;
|
|
z-index: -1;
|
|
width:100%;
|
|
height:270rpx">
|
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
<!-- banner start-->
|
|
<view class="tn-flex tn-flex-wrap tn-padding-xs tn-margin-top-xl">
|
|
<view class=" " style="width: 100%;">
|
|
<view class="image-pic tn-shadow-blur" style="background-image:url('https://resource.tuniaokj.com/images/capsule-banner/banner-coinbag.png')">
|
|
<view class="image-capsule">
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- banner end-->
|
|
|
|
<view class="tn-margin-top">
|
|
<view class="nav_title--wrap">
|
|
<view class="nav_title tn-cool-bg-color-15">
|
|
<text class="tn-icon-gift tn-padding-right-sm"></text>
|
|
礼 / 品 / 兑 / 换
|
|
<text class="tn-icon-gift tn-padding-left-sm"></text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 图文 -->
|
|
<!-- 比例 start-->
|
|
<view class="tn-flex tn-flex-wrap tn-margin-sm">
|
|
<block v-for="(item, index) in content" :key="index">
|
|
<view class="" style="width: 50%;">
|
|
<view class="tn-blogger-content__wrap" style="background-color: rgba(255,255,255,0.6);">
|
|
<view class="image-pic" :style="'background-image:url(' + item.mainImage + ')'">
|
|
<view class="image-year">
|
|
</view>
|
|
</view>
|
|
|
|
<view class="tn-blogger-content__label tn-text-justify tn-padding-sm">
|
|
<text class="tn-blogger-content__label__desc">{{ item.desc }}</text>
|
|
</view>
|
|
|
|
<view class="tn-flex tn-flex-row-between tn-flex-col-center tn-padding-left-sm tn-padding-right-sm tn-padding-bottom-sm">
|
|
<!-- <view class="justify-content-item tn-flex tn-flex-col-center">
|
|
<view>
|
|
<view class="tn-color-gray">
|
|
<text class="tn-blogger-content__count-icon tn-icon-flower"></text>
|
|
<text class="tn-padding-right-sm">{{ item.collectionCount }}</text>
|
|
<text class="tn-blogger-content__count-icon tn-icon-message"></text>
|
|
<text class="tn-padding-right-sm">{{ item.commentCount }}</text>
|
|
<text class="tn-blogger-content__count-icon tn-icon-like"></text>
|
|
<text class="">{{ item.likeCount }}</text>
|
|
</view>
|
|
</view>
|
|
</view> -->
|
|
<view class="justify-content-item tn-text-center">
|
|
<view v-for="(label_item,label_index) in item.label" :key="label_index" class="tn-blogger-content__label__item tn-float-left tn-margin-right tn-bg-gray--light tn-round tn-text-sm tn-text-bold">
|
|
<text class="tn-blogger-content__label__item--prefix">#</text> {{ label_item }}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
</view>
|
|
</view>
|
|
</block>
|
|
</view>
|
|
<!-- 比例 end-->
|
|
|
|
<!-- 底部tabbar start-->
|
|
<view class="tabbar footerfixed">
|
|
|
|
|
|
<view class="action">
|
|
<view class="bar-icon">
|
|
<view class="tn-icon-home tn-color-gray--dark">
|
|
</view>
|
|
<!-- <image class="" src='https://resource.tuniaokj.com/images/tabbar/home_tnnew.png'></image> -->
|
|
</view>
|
|
<view class="tn-color-gray">首页</view>
|
|
</view>
|
|
<view class="action">
|
|
<view class="bar-icon">
|
|
<view class="tn-icon-discover tn-color-gray--dark">
|
|
</view>
|
|
<!-- <image class="" src='https://resource.tuniaokj.com/images/tabbar/information_tn.png'></image> -->
|
|
</view>
|
|
<view class="tn-color-gray">发现</view>
|
|
</view>
|
|
|
|
<!-- <view class="action bar-center">
|
|
<view class="bar-circle tn-shadow-blur">
|
|
<view class="tn-icon-camera-fill tn-color-white">
|
|
</view>
|
|
</view>
|
|
<view class="tn-color-gray">发布</view>
|
|
</view> -->
|
|
|
|
<view class="action bar-center">
|
|
<view class="nav-index-button">
|
|
<view class="nav-index-button__content">
|
|
<view class="nav-index-button__content--icon tn-flex tn-flex-row-center tn-flex-col-center">
|
|
<!-- <view class="tn-icon-logo-tuniao"></view> -->
|
|
<view class="bar-circle">
|
|
<image class="" src='https://resource.tuniaokj.com/images/tabbar/money-share.png'></image>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="nav-index-button__meteor">
|
|
<view class="nav-index-button__meteor__wrapper">
|
|
<view v-for="(item,index) in 6" :key="index" class="nav-index-button__meteor__item" :style="{transform: `rotateX(${-60 + (30 * index)}deg) rotateZ(${-60 + (30 * index)}deg)`}">
|
|
<view class="nav-index-button__meteor__item--pic"></view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- <view class="tn-color-gray">发布</view> -->
|
|
</view>
|
|
|
|
<view class="action">
|
|
<view class="bar-icon">
|
|
<view class="tn-icon-video tn-color-gray--dark">
|
|
</view>
|
|
<!-- <image class="" src='https://resource.tuniaokj.com/images/tabbar/case_tn.png'></image> -->
|
|
</view>
|
|
<view class="tn-color-gray">视频</view>
|
|
</view>
|
|
<view class="action">
|
|
<view class="bar-icon">
|
|
<view class="tn-icon-my tn-color-gray--dark">
|
|
</view>
|
|
<!-- <image class="" src='https://resource.tuniaokj.com/images/tabbar/my_tn.png'></image> -->
|
|
</view>
|
|
<view class="tn-color-gray">我的</view>
|
|
</view>
|
|
</view>
|
|
<view class="tn-padding-xl"></view>
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import template_page_mixin from '@/libs/mixin/template_page_mixin.js'
|
|
export default {
|
|
name: 'TemplateMoney',
|
|
mixins: [template_page_mixin],
|
|
data(){
|
|
return {
|
|
cardCur: 0,
|
|
swiperList: [{
|
|
id: 0,
|
|
type: 'image',
|
|
name: '春节期间累计获得64839金币',
|
|
text: '0.56元',
|
|
get: '已领取',
|
|
url: 'https://resource.tuniaokj.com/images/money/money-test.png',
|
|
}, {
|
|
id: 1,
|
|
type: 'image',
|
|
name: '春节期间累计获得231345金币',
|
|
text: '1.29元',
|
|
get: '已领取',
|
|
url: 'https://resource.tuniaokj.com/images/money/money-test2.png',
|
|
}, {
|
|
id: 2,
|
|
type: 'image',
|
|
name: '春节期间累计获得342432金币',
|
|
text: '5.??元',
|
|
get: '未领取',
|
|
url: 'https://resource.tuniaokj.com/images/money/money-test.png',
|
|
}, {
|
|
id: 3,
|
|
type: 'image',
|
|
name: '春节期间累计获得643498金币',
|
|
text: '8.??元',
|
|
get: '未领取',
|
|
url: 'https://resource.tuniaokj.com/images/money/money-test2.png',
|
|
}, {
|
|
id: 3,
|
|
type: 'image',
|
|
name: '春节期间累计获得975521金币',
|
|
text: '99元',
|
|
get: '未领取',
|
|
url: 'https://resource.tuniaokj.com/images/money/money-test.png',
|
|
}],
|
|
content: [
|
|
{
|
|
userAvatar: 'https://resource.tuniaokj.com/images/blogger/avatar_1.jpeg',
|
|
userName: '可我会像',
|
|
date: '2021年12月20日',
|
|
label: ['99金币'],
|
|
desc: '免费开源可商用组件',
|
|
mainImage: 'https://resource.tuniaokj.com/images/shop/prototype2.jpg',
|
|
viewUser: {
|
|
latestUserAvatar: [
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_1.jpeg'},
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_2.jpeg'},
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_3.jpeg'},
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_4.jpeg'},
|
|
],
|
|
viewUserCount: 129
|
|
},
|
|
collectionCount: 999,
|
|
commentCount: 999,
|
|
likeCount: 999
|
|
},
|
|
{
|
|
userAvatar: 'https://resource.tuniaokj.com/images/blogger/avatar_1.jpeg',
|
|
userName: '可我会像',
|
|
date: '2021年12月20日',
|
|
label: ['66金币'],
|
|
desc: '免费开源可商用组件',
|
|
mainImage: 'https://resource.tuniaokj.com/images/shop/prototype1.jpg',
|
|
viewUser: {
|
|
latestUserAvatar: [
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_1.jpeg'},
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_2.jpeg'},
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_3.jpeg'},
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_4.jpeg'},
|
|
],
|
|
viewUserCount: 129
|
|
},
|
|
collectionCount: 265,
|
|
commentCount: 22,
|
|
likeCount: 62
|
|
},
|
|
{
|
|
userAvatar: 'https://resource.tuniaokj.com/images/blogger/avatar_1.jpeg',
|
|
userName: '可我会像',
|
|
date: '2021年12月20日',
|
|
label: ['1266金币'],
|
|
desc: '免费开源可商用组件',
|
|
mainImage: 'https://resource.tuniaokj.com/images/shop/computer2.jpg',
|
|
viewUser: {
|
|
latestUserAvatar: [
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_1.jpeg'},
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_2.jpeg'},
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_3.jpeg'},
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_4.jpeg'},
|
|
],
|
|
viewUserCount: 129
|
|
},
|
|
collectionCount: 265,
|
|
commentCount: 22,
|
|
likeCount: 62
|
|
},
|
|
{
|
|
userAvatar: 'https://resource.tuniaokj.com/images/blogger/avatar_1.jpeg',
|
|
userName: '可我会像',
|
|
date: '2021年12月20日',
|
|
label: ['9999金币'],
|
|
desc: '免费开源可商用组件',
|
|
mainImage: 'https://resource.tuniaokj.com/images/shop/phonecase1.jpg',
|
|
viewUser: {
|
|
latestUserAvatar: [
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_1.jpeg'},
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_2.jpeg'},
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_3.jpeg'},
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_4.jpeg'},
|
|
],
|
|
viewUserCount: 129
|
|
},
|
|
collectionCount: 265,
|
|
commentCount: 22,
|
|
likeCount: 62
|
|
},
|
|
{
|
|
userAvatar: 'https://resource.tuniaokj.com/images/blogger/avatar_1.jpeg',
|
|
userName: '可我会像',
|
|
date: '2021年12月20日',
|
|
label: ['6666金币'],
|
|
desc: '免费开源可商用组件',
|
|
mainImage: 'https://resource.tuniaokj.com/images/shop/phonecase2.jpg',
|
|
viewUser: {
|
|
latestUserAvatar: [
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_1.jpeg'},
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_2.jpeg'},
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_3.jpeg'},
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_4.jpeg'},
|
|
],
|
|
viewUserCount: 129
|
|
},
|
|
collectionCount: 265,
|
|
commentCount: 22,
|
|
likeCount: 62
|
|
},
|
|
{
|
|
userAvatar: 'https://resource.tuniaokj.com/images/blogger/avatar_1.jpeg',
|
|
userName: '可我会像',
|
|
date: '2021年12月20日',
|
|
label: ['888金币'],
|
|
desc: '我们都是好孩子',
|
|
mainImage: 'https://resource.tuniaokj.com/images/shop/watch1.jpg',
|
|
viewUser: {
|
|
latestUserAvatar: [
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_1.jpeg'},
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_2.jpeg'},
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_3.jpeg'},
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_4.jpeg'},
|
|
],
|
|
viewUserCount: 129
|
|
},
|
|
collectionCount: 265,
|
|
commentCount: 22,
|
|
likeCount: 62
|
|
},
|
|
{
|
|
userAvatar: 'https://resource.tuniaokj.com/images/blogger/avatar_1.jpeg',
|
|
userName: '可我会像',
|
|
date: '2021年12月20日',
|
|
label: ['299金币'],
|
|
desc: '免费开源可商用组件',
|
|
mainImage: 'https://resource.tuniaokj.com/images/shop/sticker.jpg',
|
|
viewUser: {
|
|
latestUserAvatar: [
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_1.jpeg'},
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_2.jpeg'},
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_3.jpeg'},
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_4.jpeg'},
|
|
],
|
|
viewUserCount: 129
|
|
},
|
|
collectionCount: 265,
|
|
commentCount: 22,
|
|
likeCount: 62
|
|
},
|
|
{
|
|
userAvatar: 'https://resource.tuniaokj.com/images/blogger/avatar_1.jpeg',
|
|
userName: '可我会像',
|
|
date: '2021年12月20日',
|
|
label: ['899金币'],
|
|
desc: '免费开源可商用组件',
|
|
mainImage: 'https://resource.tuniaokj.com/images/shop/card.jpg',
|
|
viewUser: {
|
|
latestUserAvatar: [
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_1.jpeg'},
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_2.jpeg'},
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_3.jpeg'},
|
|
{src: 'https://resource.tuniaokj.com/images/blogger/avatar_4.jpeg'},
|
|
],
|
|
viewUserCount: 129
|
|
},
|
|
collectionCount: 265,
|
|
commentCount: 22,
|
|
likeCount: 62
|
|
}
|
|
]
|
|
}
|
|
},
|
|
methods: {
|
|
// cardSwiper
|
|
cardSwiper(e) {
|
|
this.cardCur = e.detail.current
|
|
},
|
|
// swiper点击事件
|
|
handleSwiperClick(index) {
|
|
this.cardCur = index
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '@/static/css/templatePage/custom_nav_bar.scss';
|
|
/* 顶部背景图 start */
|
|
.top-backgroup {
|
|
position: fixed;
|
|
height: 100vh;
|
|
z-index: -1;
|
|
|
|
.backgroud-image {
|
|
width: 100%;
|
|
height: 100vh;
|
|
// z-index: -1;
|
|
}
|
|
}
|
|
|
|
.card-swiper {
|
|
height: 70vh !important;
|
|
}
|
|
|
|
.card-swiper swiper-item {
|
|
width: 750rpx !important;
|
|
left: 0rpx;
|
|
box-sizing: border-box;
|
|
overflow: initial;
|
|
}
|
|
|
|
.card-swiper swiper-item .swiper-item {
|
|
margin-top: 30vh;
|
|
width: 100%;
|
|
display: block;
|
|
height: 100vh;
|
|
border-radius: 0rpx;
|
|
transform: translate(30rpx, 0rpx) scale(0.8);
|
|
transition: all 0.2s ease-in 0s;
|
|
overflow: hidden;
|
|
opacity: 1;
|
|
}
|
|
|
|
.card-swiper swiper-item.cur .swiper-item {
|
|
transform: translate(30rpx, 0rpx) scale(1, 1);
|
|
transition: all 0.2s ease-in 0s;
|
|
opacity: 1;
|
|
}
|
|
|
|
.card-swiper swiper-item .swiper-item-text {
|
|
margin-top: -65vh;
|
|
width: 100%;
|
|
// height: 100%;
|
|
display: block;
|
|
border-radius: 10rpx;
|
|
transform: scale(0.7, 0.7);
|
|
transition: all 0.4s ease 0s;
|
|
overflow: hidden;
|
|
opacity: 1;
|
|
}
|
|
|
|
.card-swiper swiper-item.cur .swiper-item-text {
|
|
padding-left: 30rpx;
|
|
transform: scale(1);
|
|
transition: all 0.4s ease 0s;
|
|
opacity: 1;
|
|
}
|
|
|
|
.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: absolute;
|
|
display:flex;
|
|
flex-direction:row;
|
|
align-items:center;
|
|
justify-content:center;
|
|
}
|
|
|
|
.spot{
|
|
opacity: 1;
|
|
width: 100rpx;
|
|
height: 80rpx;
|
|
border-radius: 20rpx;
|
|
margin: 20rpx 15rpx !important;
|
|
left: 0rpx;
|
|
right: 0;
|
|
top: -53vh;
|
|
position: relative;
|
|
}
|
|
|
|
.spot.active .icon-text{
|
|
transform: scale(1.6);
|
|
margin-bottom: 20rpx;
|
|
opacity: 1;
|
|
}
|
|
|
|
/* 标题 start */
|
|
.nav_title {
|
|
-webkit-background-clip: text;
|
|
color: transparent;
|
|
|
|
&--wrap {
|
|
position: relative;
|
|
display: flex;
|
|
height: 120rpx;
|
|
font-size: 46rpx;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-weight: bold;
|
|
background-image: url(https://resource.tuniaokj.com/images/title_bg/title44.png);
|
|
background-size: cover;
|
|
}
|
|
}
|
|
/* 标题 end */
|
|
|
|
/* 文章内容 start*/
|
|
.tn-blogger-content {
|
|
&__wrap {
|
|
box-shadow: 0rpx 0rpx 50rpx 0rpx rgba(0, 0, 0, 0.12);
|
|
border-radius: 20rpx;
|
|
margin: 15rpx;
|
|
}
|
|
|
|
&__info {
|
|
&__btn {
|
|
margin-right: -12rpx;
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
|
|
&__label {
|
|
&__item {
|
|
line-height: 45rpx;
|
|
padding: 0 20rpx;
|
|
margin: 5rpx 18rpx 0 0;
|
|
|
|
&--prefix {
|
|
color: #82B2FF;
|
|
padding-right: 10rpx;
|
|
}
|
|
}
|
|
|
|
&__desc {
|
|
line-height: 35rpx;
|
|
}
|
|
}
|
|
|
|
&__main-image {
|
|
border-radius: 16rpx 16rpx 0 0;
|
|
|
|
&--1 {
|
|
max-width: 690rpx;
|
|
min-width: 690rpx;
|
|
max-height: 400rpx;
|
|
min-height: 400rpx;
|
|
}
|
|
|
|
&--2 {
|
|
max-width: 260rpx;
|
|
max-height: 260rpx;
|
|
}
|
|
|
|
&--3 {
|
|
height: 212rpx;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
&__count-icon {
|
|
font-size: 30rpx;
|
|
padding-right: 5rpx;
|
|
}
|
|
}
|
|
|
|
.image-year{
|
|
padding: 150rpx 0rpx;
|
|
font-size: 16rpx;
|
|
font-weight: 300;
|
|
position: relative;
|
|
}
|
|
.image-capsule{
|
|
padding: 100rpx 0rpx;
|
|
font-size: 40rpx;
|
|
font-weight: 300;
|
|
position: relative;
|
|
}
|
|
.image-pic{
|
|
background-size: cover;
|
|
background-repeat:no-repeat;
|
|
// background-attachment:fixed;
|
|
background-position:top;
|
|
border-radius: 20rpx 20rpx 0 0;
|
|
}
|
|
|
|
/* 文章内容 end*/
|
|
|
|
|
|
/* 底部tabbar start*/
|
|
.footerfixed{
|
|
position: fixed;
|
|
width: 100%;
|
|
bottom: 0;
|
|
z-index: 999;
|
|
background-color: #FFFFFF;
|
|
box-shadow: 0rpx 0rpx 30rpx 0rpx rgba(0, 0, 0, 0.07);
|
|
}
|
|
|
|
.tabbar {
|
|
display: flex;
|
|
align-items: center;
|
|
min-height: 110rpx;
|
|
justify-content: space-between;
|
|
padding: 0;
|
|
height: calc(110rpx + env(safe-area-inset-bottom) / 2);
|
|
padding-bottom: calc(env(safe-area-inset-bottom) / 2);
|
|
}
|
|
|
|
.tabbar .action {
|
|
font-size: 22rpx;
|
|
position: relative;
|
|
flex: 1;
|
|
text-align: center;
|
|
padding: 0;
|
|
display: block;
|
|
height: auto;
|
|
line-height: 1;
|
|
margin: 0;
|
|
overflow: initial;
|
|
}
|
|
|
|
.bar-center{
|
|
animation: suspension 3s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes suspension {
|
|
0%, 100% {
|
|
transform: translateY(0);
|
|
}
|
|
50% {
|
|
transform: translateY(-0.8rem);
|
|
}
|
|
}
|
|
|
|
.tabbar .action .bar-icon {
|
|
width: 100rpx;
|
|
position: relative;
|
|
display: block;
|
|
height: auto;
|
|
margin: 0 auto 10rpx;
|
|
text-align: center;
|
|
font-size: 42rpx;
|
|
// line-height: 50rpx;
|
|
}
|
|
|
|
.tabbar .action .bar-icon image {
|
|
width: 50rpx;
|
|
height: 50rpx;
|
|
display: inline-block;
|
|
}
|
|
|
|
.tabbar .action .bar-circle {
|
|
position: relative;
|
|
display: block;
|
|
margin: 0rpx auto 0rpx;
|
|
text-align: center;
|
|
font-size: 52rpx;
|
|
line-height: 90rpx;
|
|
// background-color: #01BEFF;
|
|
width: 130rpx !important;
|
|
height: 130rpx !important;
|
|
overflow: hidden;
|
|
// border-radius: 50%;
|
|
// box-shadow: 0px 10px 30px rgba(70,23,129, 0.12),
|
|
// 0px -8px 40px rgba(255, 255, 255, 1),
|
|
// inset 0px -10px 10px rgba(70,23,129, 0.05),
|
|
// inset 0px 10px 20px rgba(255, 255, 255, 1);
|
|
// box-shadow: 0rpx 0rpx 20rpx 0rpx rgba(1, 190, 255, 0.5);
|
|
}
|
|
|
|
.tabbar .action .bar-circle image {
|
|
width: 130rpx;
|
|
height: 130rpx;
|
|
display: inline-block;
|
|
margin: 0rpx auto 0rpx;
|
|
}
|
|
|
|
/* 流星+悬浮 */
|
|
.nav-index-button {
|
|
animation: suspension 3s ease-in-out infinite;
|
|
z-index: 999999;
|
|
|
|
|
|
&__content {
|
|
position: absolute;
|
|
width: 130rpx;
|
|
height: 130rpx;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
|
|
&--icon {
|
|
width: 130rpx;
|
|
height: 130rpx;
|
|
font-size: 60rpx;
|
|
border-radius: 50%;
|
|
margin-bottom: 18rpx;
|
|
position: relative;
|
|
z-index: 1;
|
|
transform: scale(0.85);
|
|
|
|
&::after {
|
|
content: " ";
|
|
position: absolute;
|
|
z-index: -1;
|
|
width: 100%;
|
|
height: 100%;
|
|
left: 0;
|
|
bottom: 0;
|
|
border-radius: inherit;
|
|
opacity: 1;
|
|
transform: scale(1, 1);
|
|
background-size: 100% 100%;
|
|
background-image: url(https://resource.tuniaokj.com/images/cool_bg_image/icon_bg6.png);
|
|
}
|
|
}
|
|
}
|
|
|
|
&__meteor {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 100rpx;
|
|
height: 100rpx;
|
|
transform-style: preserve-3d;
|
|
transform: translate(-50%, -50%) rotateY(75deg) rotateZ(10deg);
|
|
|
|
&__wrapper {
|
|
width: 100rpx;
|
|
height: 100rpx;
|
|
transform-style: preserve-3d;
|
|
animation: spin 20s linear infinite;
|
|
}
|
|
|
|
&__item {
|
|
position: absolute;
|
|
width: 100rpx;
|
|
height: 100rpx;
|
|
border-radius: 1000rpx;
|
|
left: 0;
|
|
top: 0;
|
|
|
|
&--pic {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: url(https://resource.tuniaokj.com/images/cool_bg_image/arc2.png) no-repeat center center;
|
|
background-size: 100% 100%;
|
|
animation: arc 4s linear infinite;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@keyframes suspension {
|
|
0%, 100% {
|
|
transform: translateY(0);
|
|
}
|
|
50% {
|
|
transform: translateY(-0.6rem);
|
|
}
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% {
|
|
transform: rotateX(0deg);
|
|
}
|
|
|
|
100% {
|
|
transform: rotateX(-360deg);
|
|
}
|
|
}
|
|
|
|
@keyframes arc {
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
</style>
|