提交 ad6d6225 编写于 作者: H hdx

long-list: 更新指示器线,使用 transform

上级 7779add1
...@@ -4,21 +4,19 @@ ...@@ -4,21 +4,19 @@
<input placeholder="搜索..." /> <input placeholder="搜索..." />
</view> </view>
<view class="swiper-list"> <view class="swiper-list">
<scroll-view class="swiper-tabs" :scroll-left="tabsScrollLeft" :scroll-x="true" :show-scrollbar="false"> <scroll-view ref="tabScroll" class="swiper-tabs" :scroll-x="true" :show-scrollbar="false">
<!-- TODO 多一层 view -->
<view> <view>
<view class="flex-row"> <view class="flex-row">
<text class="swiper-tabs-item" :class="swiperIndex==index ? 'swiper-tabs-item-active' : ''" <text ref="swipertab" class="swiper-tabs-item" :class="swiperIndex==index ? 'swiper-tabs-item-active' : ''"
v-for="(item, index) in swiperList" ref="swipertab" :key="index" @click="onTabClick(index)"> v-for="(item, index) in swiperList" :key="index" @click="onTabClick(index)">
{{item.name}} {{item.name}}
</text> </text>
</view> </view>
<view class="swiper-tabs-indicator"> <view ref="indicator" class="swiper-tabs-indicator"></view>
<view class="swiper-tabs-underline"
:style="{left: swiperIndicatorLineLeft + 'px', width: swiperIndicatorLineWidth + 'px'}"></view>
</view>
</view> </view>
</scroll-view> </scroll-view>
<swiper class="swiper-view" ref="swiper" :current="swiperIndex" @transition="onSwiperTransition" <swiper ref="swiper" class="swiper-view" :current="swiperIndex" @transition="onSwiperTransition"
@animationfinish="onSwiperAnimationfinish"> @animationfinish="onSwiperAnimationfinish">
<swiper-item class="swiper-item" v-for="(item, index) in swiperList" :key="index"> <swiper-item class="swiper-item" v-for="(item, index) in swiperList" :key="index">
<long-page ref="longPage" :type="item.type" :preload="item.preload"></long-page> <long-page ref="longPage" :type="item.type" :preload="item.preload"></long-page>
...@@ -69,9 +67,8 @@ ...@@ -69,9 +67,8 @@
} as SwiperViewItem } as SwiperViewItem
] as SwiperViewItem[], ] as SwiperViewItem[],
swiperIndex: -1, swiperIndex: -1,
tabsScrollLeft: 0, $tabScrollView: null as null | INode,
swiperIndicatorLineLeft: 0, $indicatorNode: null as null | INode,
swiperIndicatorLineWidth: 0,
$headerHeight: 0, $headerHeight: 0,
$animationFinishIndex: 0, $animationFinishIndex: 0,
$swiperWidth: 0, $swiperWidth: 0,
...@@ -79,6 +76,8 @@ ...@@ -79,6 +76,8 @@
} }
}, },
onReady() { onReady() {
this.$tabScrollView = this.$refs.get('tabScroll') as INode
this.$indicatorNode = this.$refs.get('indicator') as INode
this.$headerHeight = (this.$refs["header"] as INode).offsetHeight this.$headerHeight = (this.$refs["header"] as INode).offsetHeight
this.$swiperWidth = (this.$refs["swiper"] as INode).getBoundingClientRect().width this.$swiperWidth = (this.$refs["swiper"] as INode).getBoundingClientRect().width
this.queryTabItemsSize() this.queryTabItemsSize()
...@@ -88,40 +87,32 @@ ...@@ -88,40 +87,32 @@
onTabClick(index : number) { onTabClick(index : number) {
this.setSwiperIndex(index, false) this.setSwiperIndex(index, false)
}, },
/// 兼容微信 skyline 和 webview, uni-app-x 和 webview 行为一致
/// skyline 每项完成触发 Animationfinish,偏移值重置
/// webview 全部完成触发 Animationfinish,偏移值累加
/// 在滑动到下一个项的过程中,再次反向滑动,偏移值递减
onSwiperTransition(e : SwiperTransitionEvent) { onSwiperTransition(e : SwiperTransitionEvent) {
// 微信 skyline 每项完成触发 Animationfinish,偏移值重置
// 微信 webview 全部完成触发 Animationfinish,偏移值累加
// 在滑动到下一个项的过程中,再次反向滑动,偏移值递减
// uni-app-x 微信 webview 行为一致
const offset_x = e.detail.dx const offset_x = e.detail.dx
// 重置差异,计算当前实时索引位置 // 重置差异,计算当前索引
const current_offset_x = offset_x % this.$swiperWidth const current_offset_x = offset_x % this.$swiperWidth
const current_offset_i = offset_x / this.$swiperWidth const current_offset_i = offset_x / this.$swiperWidth
const current_index = this.$animationFinishIndex + current_offset_i.toInt() const current_index = this.$animationFinishIndex + current_offset_i.toInt()
// 边界检查 // 更新索引及边界检查
let move_to_index = current_index let move_to_index = current_index
if (current_offset_x > 0) { if (current_offset_x > 0 && move_to_index < this.swiperList.length - 1) {
if (move_to_index < this.$swiperTabsRect.length - 1) {
move_to_index += 1 move_to_index += 1
} } else if (current_offset_x < 0 && move_to_index > 0) {
} else if (current_offset_x < 0) {
if (move_to_index > 0) {
move_to_index -= 1 move_to_index -= 1
} }
}
// 计算蛇形线位置和大小 // 计算偏移百分比
const percentage = Math.abs(current_offset_x) / this.$swiperWidth const percentage = Math.abs(current_offset_x) / this.$swiperWidth
const current_size = this.$swiperTabsRect[current_index]
const move_to_size = this.$swiperTabsRect[move_to_index]
const indicator_line_l = current_size.x + (move_to_size.x - current_size.x) * percentage
const indicator_line_w = current_size.w + (move_to_size.w - current_size.w) * percentage
// 更新蛇形线位置和大小 // 通知更新指示线
// 这代码写的不对,不能在拖动滚动中使用vue绑定样式,只能用ref+transform this.updateTabIndicator(current_index, move_to_index, percentage)
// this.updateTabIndicator(indicator_line_l, indicator_line_w)
// 首次可见时初始化数据 // 首次可见时初始化数据
this.initSwiperItemPage(move_to_index) this.initSwiperItemPage(move_to_index)
...@@ -144,18 +135,29 @@ ...@@ -144,18 +135,29 @@
if (this.swiperIndex === index) { if (this.swiperIndex === index) {
return return
} }
this.swiperIndex = index this.swiperIndex = index
this.initSwiperItemPage(index) this.initSwiperItemPage(index)
if (updateIndicator) { if (updateIndicator) {
this.updateTabIndicator(this.$swiperTabsRect[index].x, this.$swiperTabsRect[index].w) this.updateTabIndicator(index, index, 1)
} }
}, },
updateTabIndicator(left : Number, width : Number) { updateTabIndicator(current_index : number, move_to_index : number, percentage : number) {
this.swiperIndicatorLineLeft = left // 计算指示线
this.swiperIndicatorLineWidth = width const current_size = this.$swiperTabsRect[current_index]
this.tabsScrollLeft = left + width / 2 - this.$swiperWidth / 2 const move_to_size = this.$swiperTabsRect[move_to_index]
const indicator_line_l = current_size.x + (move_to_size.x - current_size.x) * percentage
const indicator_line_w = current_size.w + (move_to_size.w - current_size.w) * percentage
// 更新指示线
const x = indicator_line_l + indicator_line_w / 2
this.$indicatorNode?.style?.setProperty('transform', `translateX(${x}px) scaleX(${indicator_line_w})`)
// 将指示线滚动到水平中心位置
const scroll_x = x - this.$swiperWidth / 2
this.$tabScrollView?.setAttribute('scrollLeft', scroll_x)
}, },
initSwiperItemPage(index : Number) { initSwiperItemPage(index : Number) {
if (!this.swiperList[index].preload) { if (!this.swiperList[index].preload) {
...@@ -200,15 +202,8 @@ ...@@ -200,15 +202,8 @@
} }
.swiper-tabs-indicator { .swiper-tabs-indicator {
position: relative; width: 1px;
height: 2px; height: 2px;
}
.swiper-tabs-underline {
position: absolute;
top: 0;
bottom: 0;
width: 0;
background-color: #007AFF; background-color: #007AFF;
} }
......
<template> <template>
<view class="swiper-list"> <view class="swiper-list">
<scroll-view ref="tabScroll" class="swiper-tabs" :scroll-x="true" :show-scrollbar="false"> <scroll-view ref="tabScroll" class="swiper-tabs" :scroll-x="true" :show-scrollbar="false">
<!-- TODO 多一层 view -->
<view> <view>
<view class="flex-row"> <view class="flex-row">
<text ref="swipertab" class="swiper-tabs-item" :class="swiperIndex==index ? 'swiper-tabs-item-active' : ''" <text ref="swipertab" class="swiper-tabs-item" :class="swiperIndex==index ? 'swiper-tabs-item-active' : ''"
...@@ -62,10 +63,10 @@ ...@@ -62,10 +63,10 @@
this.setSwiperIndex(index, false) this.setSwiperIndex(index, false)
}, },
onSwiperTransition(e : SwiperTransitionEvent) { onSwiperTransition(e : SwiperTransitionEvent) {
// skyline 每项完成触发 Animationfinish,偏移值重置 // 微信 skyline 每项完成触发 Animationfinish,偏移值重置
// webview 全部完成触发 Animationfinish,偏移值累加 // 微信 webview 全部完成触发 Animationfinish,偏移值累加
// 在滑动到下一个项的过程中,再次反向滑动,偏移值递减 // 在滑动到下一个项的过程中,再次反向滑动,偏移值递减
// uni-app-x 和 webview 行为一致 // uni-app-x 和 微信 webview 行为一致
const offset_x = e.detail.dx const offset_x = e.detail.dx
...@@ -74,29 +75,21 @@ ...@@ -74,29 +75,21 @@
const current_offset_i = offset_x / this.$swiperWidth const current_offset_i = offset_x / this.$swiperWidth
const current_index = this.$animationFinishIndex + current_offset_i.toInt() const current_index = this.$animationFinishIndex + current_offset_i.toInt()
// 边界检查 // 更新索引及边界检查
let move_to_index = current_index let move_to_index = current_index
if (current_offset_x > 0) { if (current_offset_x > 0 && move_to_index < this.swiperList.length - 1) {
if (move_to_index < this.$swiperTabsRect.length - 1) {
move_to_index += 1 move_to_index += 1
} } else if (current_offset_x < 0 && move_to_index > 0) {
} else if (current_offset_x < 0) {
if (move_to_index > 0) {
move_to_index -= 1 move_to_index -= 1
} }
}
// 计算指示线位置和大小 // 计算偏移百分比
const percentage = Math.abs(current_offset_x) / this.$swiperWidth const percentage = Math.abs(current_offset_x) / this.$swiperWidth
const current_size = this.$swiperTabsRect[current_index]
const move_to_size = this.$swiperTabsRect[move_to_index]
const indicator_line_l = current_size.x + (move_to_size.x - current_size.x) * percentage
const indicator_line_w = current_size.w + (move_to_size.w - current_size.w) * percentage
// 更新指示线位置和大小 // 通知更新指示线
this.updateTabIndicator(indicator_line_l, indicator_line_w) this.updateTabIndicator(current_index, move_to_index, percentage)
// console.log(current_index + "->" + move_to_index + " x=" + offset_x + " p=" + percentage) // console.log(current_index + "->" + move_to_index+ " p=" + percentage + " x=" + offset_x )
}, },
onSwiperAnimationfinish(e : SwiperAnimationFinishEvent) { onSwiperAnimationfinish(e : SwiperAnimationFinishEvent) {
this.setSwiperIndex(e.detail.current, true) this.setSwiperIndex(e.detail.current, true)
...@@ -120,13 +113,19 @@ ...@@ -120,13 +113,19 @@
this.swiperIndex = index this.swiperIndex = index
if (updateIndicator) { if (updateIndicator) {
this.updateTabIndicator(this.$swiperTabsRect[index].x, this.$swiperTabsRect[index].w) this.updateTabIndicator(index, index, 1)
} }
}, },
updateTabIndicator(left : number, width : number) { 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]
const indicator_line_l = current_size.x + (move_to_size.x - current_size.x) * percentage
const indicator_line_w = current_size.w + (move_to_size.w - current_size.w) * percentage
// 更新指示线 // 更新指示线
const x = left + width / 2 const x = indicator_line_l + indicator_line_w / 2
this.$indicatorNode?.style?.setProperty('transform', `translateX(${x}px) scaleX(${width}px)`) this.$indicatorNode?.style?.setProperty('transform', `translateX(${x}px) scaleX(${indicator_line_w})`)
// 将指示线滚动到水平中心位置 // 将指示线滚动到水平中心位置
const scroll_x = x - this.$swiperWidth / 2 const scroll_x = x - this.$swiperWidth / 2
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册