swiper-list.uvue 7.0 KB
Newer Older
H
hdx 已提交
1 2
<template>
  <view class="swiper-list">
3
    <scroll-view ref="tabScroll" class="swiper-tabs" :scroll-x="true" :show-scrollbar="false">
4 5 6 7 8
      <view class="flex-row">
        <text ref="swipertab" class="swiper-tabs-item" :class="swiperIndex==index ? 'swiper-tabs-item-active' : ''"
          v-for="(item, index) in swiperList" :key="index" @click="onTabClick(index)">
          {{item.title}}
        </text>
H
hdx 已提交
9
      </view>
10
      <view ref="indicator" class="swiper-tabs-indicator"></view>
H
hdx 已提交
11
    </scroll-view>
12
    <swiper ref="swiper" class="swiper-view" :current="swiperIndex" @transition="onSwiperTransition"
13
      @animationfinish="onSwiperAnimationfinish">
H
hdx 已提交
14 15
      <swiper-item class="swiper-item" v-for="(_, index) in swiperList" :key="index">
        <text class="swiper-item-text">{{index}}</text>
W
wanganxp 已提交
16
        <!-- 可以将上述text组件替换为list组件,实现可左右滑动的长列表 -->
H
hdx 已提交
17 18 19 20 21 22 23
      </swiper-item>
    </swiper>
  </view>
</template>

<script>
  type SwiperTabsItem = {
H
hdx 已提交
24 25
    x : number,
    w : number
H
hdx 已提交
26 27 28
  }

  type SwiperViewItem = {
29
    title : string,
H
hdx 已提交
30 31
  }

H
hdx 已提交
32 33 34 35 36 37 38 39 40 41 42 43
  /**
   * 根据权重在两个值之间执行线性插值.
   * @constructor
   * @param {number} value1 - 第一个值,该值应为下限.
   * @param {number} value2 - 第二个值,该值应为上限.
   * @param {number} amount - 应介于 0 和 1 之间,指示内插的权重.
   * @returns {number} 内插值
   */
  function lerpNumber(value1 : number, value2 : number, amount : number) : number {
    return (value1 + (value2 - value1) * amount)
  }

H
hdx 已提交
44 45 46 47 48
  export default {
    data() {
      return {
        swiperList: [] as SwiperViewItem[],
        swiperIndex: -1,
DCloud-yyl's avatar
DCloud-yyl 已提交
49 50
        $tabScrollView: null as null | Element,
        $indicatorNode: null as null | Element,
51
        $animationFinishIndex: 0,
H
hdx 已提交
52
        $swiperWidth: 0,
53
        $swiperTabsRect: [] as SwiperTabsItem[]
H
hdx 已提交
54 55 56
      }
    },
    onLoad() {
H
hdx 已提交
57
      // 初始化 8 个页签,宽度依次递增,用于演示在滑动 swiper 过程中指示线宽度的线性变化
H
hdx 已提交
58
      for (let i = 0; i < 8; i++) {
59
        const space = " ".repeat(i)
H
hdx 已提交
60
        this.swiperList.push({
61
          title: "Tab " + space + i
H
hdx 已提交
62 63 64 65
        } as SwiperViewItem)
      }
    },
    onReady() {
DCloud-yyl's avatar
DCloud-yyl 已提交
66 67 68
      this.$tabScrollView = this.$refs['tabScroll'] as Element
      this.$indicatorNode = this.$refs['indicator'] as Element
      this.$swiperWidth = (this.$refs["swiper"] as Element).getBoundingClientRect().width
H
hdx 已提交
69
      this.cacheTabItemsSize()
70
      this.setSwiperIndex(0, true)
H
hdx 已提交
71 72
    },
    methods: {
H
hdx 已提交
73 74 75 76 77
      /**
       * 每个页签的点击事件,点击后设置当前 swiper.
       * @constructor
       * @param {number} index - 当前索引,该值应介于 0 和 最大数量之间.
       */
H
hdx 已提交
78
      onTabClick(index : number) {
79
        this.setSwiperIndex(index, false)
H
hdx 已提交
80 81
      },
      onSwiperTransition(e : SwiperTransitionEvent) {
82 83
        // 微信 skyline 每项完成触发 Animationfinish,偏移值重置
        // 微信 webview 全部完成触发 Animationfinish,偏移值累加
84
        // 在滑动到下一个项的过程中,再次反向滑动,偏移值递减
85
        // uni-app-x 和 微信 webview 行为一致
86

H
hdx 已提交
87 88
        const offset_x = e.detail.dx

H
hdx 已提交
89
        // 计算当前索引并重置差异
H
hdx 已提交
90 91 92 93
        const current_offset_x = offset_x % this.$swiperWidth
        const current_offset_i = offset_x / this.$swiperWidth
        const current_index = this.$animationFinishIndex + current_offset_i.toInt()

H
hdx 已提交
94
        // 计算目标索引及边界检查
H
hdx 已提交
95
        let move_to_index = current_index
96 97 98 99
        if (current_offset_x > 0 && move_to_index < this.swiperList.length - 1) {
          move_to_index += 1
        } else if (current_offset_x < 0 && move_to_index > 0) {
          move_to_index -= 1
H
hdx 已提交
100 101
        }

102
        // 计算偏移百分比
H
hdx 已提交
103 104
        const percentage = Math.abs(current_offset_x) / this.$swiperWidth

105 106
        // 通知更新指示线
        this.updateTabIndicator(current_index, move_to_index, percentage)
H
hdx 已提交
107
      },
H
hdx 已提交
108 109 110
      /**
       * Swiper滑动动画结束事件.
       */
H
hdx 已提交
111
      onSwiperAnimationfinish(e : SwiperAnimationFinishEvent) {
112
        this.setSwiperIndex(e.detail.current, true)
H
hdx 已提交
113 114

        // 记录上次的索引位置
115
        this.$animationFinishIndex = e.detail.current
H
hdx 已提交
116
      },
H
hdx 已提交
117 118 119
      /**
       * 缓存所有页签的左边距和宽度,用于计算指示线在移动过程中的线性变化.
       */
H
hdx 已提交
120
      cacheTabItemsSize() {
H
hdx 已提交
121
        this.$swiperTabsRect.length = 0;
DCloud-yyl's avatar
DCloud-yyl 已提交
122
        const tabs = this.$refs["swipertab"] as Element[]
H
hdx 已提交
123 124
        tabs.forEach((node) => {
          this.$swiperTabsRect.push({
H
hdx 已提交
125 126
            x: node.offsetLeft,
            w: node.offsetWidth
H
hdx 已提交
127 128 129
          } as SwiperTabsItem)
        })
      },
H
hdx 已提交
130 131 132 133 134 135
      /**
       * 设置当前 swiper 选中的索引值.
       * @constructor
       * @param {number} index - 当前索引,该值应介于 0 和 最大数量之间.
       * @param {boolean} updateIndicator - 是否更新指示线.
       */
H
hdx 已提交
136
      setSwiperIndex(index : number, updateIndicator : boolean) {
H
hdx 已提交
137
        if (this.swiperIndex === index) {
138
          return
H
hdx 已提交
139
        }
140

141
        this.swiperIndex = index
H
hdx 已提交
142 143

        if (updateIndicator) {
144
          this.updateTabIndicator(index, index, 1)
H
hdx 已提交
145 146
        }
      },
H
hdx 已提交
147 148 149 150 151 152 153
      /**
       * 更新页签指示线的位置和宽度.
       * @constructor
       * @param {number} current_index - 当前索引,该值应介于 0 和 最大数量之间.
       * @param {number} move_to_index - 目标索引,该值应介于 0 和 最大数量之间.
       * @param {number} percentage - 偏移百分比,应介于 0 和 1 之间,用于计算在移动过程中的线性值.
       */
154 155 156
      updateTabIndicator(current_index : number, move_to_index : number, percentage : number) {
        const current_size = this.$swiperTabsRect[current_index]
        const move_to_size = this.$swiperTabsRect[move_to_index]
H
hdx 已提交
157

H
hdx 已提交
158
        // 计算指示线 位置 和 宽度 在移动过程中的线性值
H
hdx 已提交
159 160
        const indicator_line_x = lerpNumber(current_size.x, move_to_size.x, percentage)
        const indicator_line_w = lerpNumber(current_size.w, move_to_size.w, percentage)
161

H
hdx 已提交
162
        // 通过 transform 更新指示线,避免重排版
H
hdx 已提交
163
        const x = indicator_line_x + indicator_line_w / 2
H
hdx 已提交
164
        this.$indicatorNode!.style.setProperty('transform', `translateX(${x}px) scaleX(${indicator_line_w})`)
165

H
hdx 已提交
166
        // 滚动到水平中心位置
167
        const scroll_x = x - this.$swiperWidth / 2
168 169 170
        if(this.$tabScrollView !== null){
          this.$tabScrollView!.scrollLeft = scroll_x
        }
H
hdx 已提交
171 172 173 174 175 176 177 178
      }
    }
  }
</script>

<style>
  .flex-row {
    flex-direction: row;
179
    align-self: flex-start;
H
hdx 已提交
180 181 182 183 184 185 186 187 188 189 190 191 192
  }

  .swiper-list {
    flex: 1;
  }

  .swiper-tabs {
    background-color: #ffffff;
  }

  .swiper-tabs-item {
    color: #555;
    font-size: 16px;
193
    padding: 12px 25px;
H
hdx 已提交
194 195
  }

196
  .swiper-tabs-item-active {
H
hdx 已提交
197 198 199 200
    color: #007AFF;
  }

  .swiper-tabs-indicator {
201
    width: 1px;
H
hdx 已提交
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
    height: 2px;
    background-color: #007AFF;
  }

  .swiper-view {
    flex: 1;
  }

  .swiper-item {
    flex: 1;
    align-items: center;
    justify-content: center;
  }

  .swiper-item-text {
    font-size: 72px;
    font-weight: bold;
  }
220
</style>