Houjie
2025-04-11 1bf977929dd324f3ac64b70debd8a79443c54392
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<template>
    <view>
        <cu-custom bgColor="bg-gradual-pink" :isBack="true"><block slot="backText">返回</block>
            <block slot="content">轮播图</block>
        </cu-custom>
        <view class="cu-bar bg-white">
            <view class="action">
                <text class="cuIcon-title text-pink"></text> 全屏限高轮播
            </view>
            <view class="action">
                <switch @change="DotStyle" :class="dotStyle?'checked':''" :checked="dotStyle?true:false"></switch>
            </view>
        </view>
        <swiper class="screen-swiper" :class="dotStyle?'square-dot':'round-dot'" :indicator-dots="true" :circular="true"
         :autoplay="true" interval="5000" duration="500">
            <swiper-item v-for="(item,index) in swiperList" :key="index">
                <image :src="item.url" mode="aspectFill" v-if="item.type=='image'"></image>
                <video :src="item.url" autoplay loop muted :show-play-btn="false" :controls="false" objectFit="cover" v-if="item.type=='video'"></video>
            </swiper-item>
        </swiper>
        <!-- #ifndef MP-ALIPAY -->
        <view class="cu-bar bg-white margin-top">
            <view class="action">
                <text class="cuIcon-title text-pink"></text> 卡片式轮播
            </view>
        </view>
        <swiper class="card-swiper" :class="dotStyle?'square-dot':'round-dot'" :indicator-dots="true" :circular="true"
         :autoplay="true" interval="5000" duration="500" @change="cardSwiper" indicator-color="#8799a3"
         indicator-active-color="#0081ff">
            <swiper-item v-for="(item,index) in swiperList" :key="index" :class="cardCur==index?'cur':''">
                <view class="swiper-item">
                    <image :src="item.url" mode="aspectFill" v-if="item.type=='image'"></image>
                    <video :src="item.url" autoplay loop muted :show-play-btn="false" :controls="false" objectFit="cover" v-if="item.type=='video'"></video>
                </view>
            </swiper-item>
        </swiper>
        <view class="cu-bar bg-white margin-top">
            <view class="action">
                <text class="cuIcon-title text-pink"></text> 堆叠式轮播 
            </view>
        </view>
        <view class="tower-swiper" @touchmove="TowerMove" @touchstart="TowerStart" @touchend="TowerEnd">
            <view class="tower-item" :class="item.zIndex==1?'none':''" v-for="(item,index) in swiperList" :key="index" :style="[{'--index': item.zIndex,'--left':item.mLeft}]" :data-direction="direction">
                <view class="swiper-item">
                    <image :src="item.url" mode="aspectFill" v-if="item.type=='image'"></image>
                    <video :src="item.url" autoplay loop muted :show-play-btn="false" :controls="false" objectFit="cover" v-if="item.type=='video'"></video>
                </view>
            </view>
        </view>
        <!-- #endif -->
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                cardCur: 0,
                swiperList: [{
                    id: 0,
                    type: 'image',
                    url: 'https://ossweb-img.qq.com/images/lol/web201310/skin/big84000.jpg'
                }, {
                    id: 1,
                    type: 'image',
                    url: 'https://ossweb-img.qq.com/images/lol/web201310/skin/big37006.jpg',
                }, {
                    id: 2,
                    type: 'image',
                    url: 'https://ossweb-img.qq.com/images/lol/web201310/skin/big39000.jpg'
                }, {
                    id: 3,
                    type: 'image',
                    url: 'https://ossweb-img.qq.com/images/lol/web201310/skin/big10001.jpg'
                }, {
                    id: 4,
                    type: 'image',
                    url: 'https://ossweb-img.qq.com/images/lol/web201310/skin/big25011.jpg'
                }, {
                    id: 5,
                    type: 'image',
                    url: 'https://ossweb-img.qq.com/images/lol/web201310/skin/big21016.jpg'
                }, {
                    id: 6,
                    type: 'image',
                    url: 'https://ossweb-img.qq.com/images/lol/web201310/skin/big99008.jpg'
                }],
                dotStyle: false,
                towerStart: 0,
                direction: ''
            };
        },
        onLoad() {
            this.TowerSwiper('swiperList');
            // 初始化towerSwiper 传已有的数组名即可
        },
        methods: {
            DotStyle(e) {
                this.dotStyle = e.detail.value
            },
            // cardSwiper
            cardSwiper(e) {
                this.cardCur = e.detail.current
            },
            // towerSwiper
            // 初始化towerSwiper
            TowerSwiper(name) {
                let list = this[name];
                for (let i = 0; i < list.length; i++) {
                    list[i].zIndex = parseInt(list.length / 2) + 1 - Math.abs(i - parseInt(list.length / 2))
                    list[i].mLeft = i - parseInt(list.length / 2)
                }
                this.swiperList = list
            },
 
            // towerSwiper触摸开始
            TowerStart(e) {
                this.towerStart = e.touches[0].pageX
            },
 
            // towerSwiper计算方向
            TowerMove(e) {
                this.direction = e.touches[0].pageX - this.towerStart > 0 ? 'right' : 'left'
            },
 
            // towerSwiper计算滚动
            TowerEnd(e) {
                let direction = this.direction;
                let list = this.swiperList;
                if (direction == 'right') {
                    let mLeft = list[0].mLeft;
                    let zIndex = list[0].zIndex;
                    for (let i = 1; i < this.swiperList.length; i++) {
                        this.swiperList[i - 1].mLeft = this.swiperList[i].mLeft
                        this.swiperList[i - 1].zIndex = this.swiperList[i].zIndex
                    }
                    this.swiperList[list.length - 1].mLeft = mLeft;
                    this.swiperList[list.length - 1].zIndex = zIndex;
                } else {
                    let mLeft = list[list.length - 1].mLeft;
                    let zIndex = list[list.length - 1].zIndex;
                    for (let i = this.swiperList.length - 1; i > 0; i--) {
                        this.swiperList[i].mLeft = this.swiperList[i - 1].mLeft
                        this.swiperList[i].zIndex = this.swiperList[i - 1].zIndex
                    }
                    this.swiperList[0].mLeft = mLeft;
                    this.swiperList[0].zIndex = zIndex;
                }
                this.direction = ""
                this.swiperList = this.swiperList
            },
        }
    }
</script>
 
<style>
    .tower-swiper .tower-item {
        transform: scale(calc(0.5 + var(--index) / 10));
        margin-left: calc(var(--left) * 100upx - 150upx);
        z-index: var(--index);
    }
</style>