Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Accustomed_
hello uni-app x
提交
f28d0e0b
H
hello uni-app x
项目概览
Accustomed_
/
hello uni-app x
与 Fork 源项目一致
Fork自
DCloud / hello uni-app x
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-app x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
f28d0e0b
编写于
8月 31, 2023
作者:
H
hdx
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
swiper-list: 使用 transform: scaleX 模拟宽度,如果设置圆角会被拉伸变形, 指示线仅适用于纯色直角
上级
f4879463
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
26 addition
and
29 deletion
+26
-29
pages/template/swiper-list/swiper-list.uvue
pages/template/swiper-list/swiper-list.uvue
+26
-29
未找到文件。
pages/template/swiper-list/swiper-list.uvue
浏览文件 @
f28d0e0b
<template>
<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">
<view>
<view class="flex-row">
<text class="swiper-tabs-item" :class="swiperIndex==index ? 'swiper-tabs-item-active' : ''"
v-for="(item, index) in swiperList"
ref="swipertab"
:key="index" @click="onTabClick(index)">
<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>
</view>
<view class="swiper-tabs-indicator">
<view class="swiper-tabs-underline"
:style="{left: swiperIndicatorLineLeft + 'px', width: swiperIndicatorLineWidth + 'px'}"></view>
</view>
<view ref="indicator" class="swiper-tabs-indicator"></view>
</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">
<swiper-item class="swiper-item" v-for="(_, index) in swiperList" :key="index">
<text class="swiper-item-text">{{index}}</text>
...
...
@@ -38,9 +35,8 @@
return {
swiperList: [] as SwiperViewItem[],
swiperIndex: -1,
tabsScrollLeft: 0,
swiperIndicatorLineLeft: 0,
swiperIndicatorLineWidth: 0,
$tabScrollView: null as null | INode,
$indicatorNode: null as null | INode,
$animationFinishIndex: 0,
$swiperWidth: 0,
$swiperTabsRect: [] as SwiperTabsItem[]
...
...
@@ -55,6 +51,8 @@
}
},
onReady() {
this.$tabScrollView = this.$refs.get('tabScroll') as INode
this.$indicatorNode = this.$refs.get('indicator') as INode
this.$swiperWidth = (this.$refs["swiper"] as INode).getBoundingClientRect().width
this.queryTabItemsSize()
this.setSwiperIndex(0, true)
...
...
@@ -63,14 +61,15 @@
onTabClick(index : number) {
this.setSwiperIndex(index, false)
},
/// 兼容微信 skyline 和 webview, uni-app-x 和 webview 行为一致
/// skyline 每项完成触发 Animationfinish,偏移值重置
/// webview 全部完成触发 Animationfinish,偏移值累加
/// 在滑动到下一个项的过程中,再次反向滑动,偏移值递减
onSwiperTransition(e : SwiperTransitionEvent) {
// skyline 每项完成触发 Animationfinish,偏移值重置
// webview 全部完成触发 Animationfinish,偏移值累加
// 在滑动到下一个项的过程中,再次反向滑动,偏移值递减
// uni-app-x 和 webview 行为一致
const offset_x = e.detail.dx
// 重置差异,计算当前
实时索引位置
// 重置差异,计算当前
索引
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()
...
...
@@ -87,14 +86,14 @@
}
}
// 计算
蛇形
线位置和大小
// 计算
指示
线位置和大小
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)
// console.log(current_index + "->" + move_to_index + " x=" + offset_x + " p=" + percentage)
...
...
@@ -117,6 +116,7 @@
if (this.swiperIndex === index) {
return
}
this.swiperIndex = index
if (updateIndicator) {
...
...
@@ -124,9 +124,13 @@
}
},
updateTabIndicator(left : Number, width : Number) {
this.swiperIndicatorLineLeft = left
this.swiperIndicatorLineWidth = width
this.tabsScrollLeft = left + width / 2 - this.$swiperWidth / 2
// 更新指示线
const x = left + width / 2
this.$indicatorNode?.style?.setProperty('transform', `translateX(${x}px) scaleX(${width}px)`)
// 将指示线滚动到水平中心位置
const scroll_x = x - this.$swiperWidth / 2
this.$tabScrollView?.setAttribute('scrollLeft', scroll_x)
}
}
}
...
...
@@ -156,15 +160,8 @@
}
.swiper-tabs-indicator {
position: relative
;
width: 1px
;
height: 2px;
}
.swiper-tabs-underline {
position: absolute;
top: 0;
bottom: 0;
width: 0;
background-color: #007AFF;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录