swiper-list.uvue 6.9 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 16 17 18 19 20 21 22
      <swiper-item class="swiper-item" v-for="(_, index) in swiperList" :key="index">
        <text class="swiper-item-text">{{index}}</text>
      </swiper-item>
    </swiper>
  </view>
</template>

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

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

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

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

H
hdx 已提交
88
        // 计算当前索引并重置差异
H
hdx 已提交
89 90 91 92
        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 已提交
93
        // 计算目标索引及边界检查
H
hdx 已提交
94
        let move_to_index = current_index
95 96 97 98
        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 已提交
99 100
        }

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

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

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

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

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

H
hdx 已提交
157
        // 计算指示线 位置 和 宽度 在移动过程中的线性值
H
hdx 已提交
158 159
        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)
160

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

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

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

  .swiper-list {
    flex: 1;
  }

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

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

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

  .swiper-tabs-indicator {
200
    width: 1px;
H
hdx 已提交
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
    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;
  }
219
</style>