Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
9a04d0af
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
5994
Star
90
Fork
162
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
18
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-app x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
18
Issue
18
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
9a04d0af
编写于
9月 01, 2023
作者:
H
hdx
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: 新增 swiper-list2, 缩放页签文字大小效果
上级
ad6d6225
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
177 addition
and
0 deletion
+177
-0
pages.json
pages.json
+6
-0
pages/tabBar/template.uvue
pages/tabBar/template.uvue
+8
-0
pages/template/swiper-list2/swiper-list2.uvue
pages/template/swiper-list2/swiper-list2.uvue
+163
-0
未找到文件。
pages.json
浏览文件 @
9a04d0af
...
...
@@ -767,6 +767,12 @@
"style"
:
{
"navigationBarTitleText"
:
"swiper-list"
}
},
{
"path"
:
"pages/template/swiper-list2/swiper-list2"
,
"style"
:
{
"navigationBarTitleText"
:
"swiper-list2"
}
},
{
"path"
:
"pages/template/swiper-vertical-video/swiper-vertical-video"
,
...
...
pages/tabBar/template.uvue
浏览文件 @
9a04d0af
...
...
@@ -102,6 +102,14 @@ export default {
open: false,
enable: true,
pages: [] as Page[],
},
{
id: 'swiper-list2',
url: 'swiper-list2',
name: 'swiper-list2',
open: false,
enable: true,
pages: [] as Page[],
},
{
id: 'custom-refresher',
...
...
pages/template/swiper-list2/swiper-list2.uvue
0 → 100644
浏览文件 @
9a04d0af
<template>
<view class="swiper-list">
<scroll-view ref="tabScroll" class="swiper-tabs" :scroll-x="true" :show-scrollbar="false">
<view class="flex-row" style="align-self: flex-start;">
<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>
</scroll-view>
<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>
</swiper-item>
</swiper>
</view>
</template>
<script>
type SwiperViewItem = {
title : string,
}
export default {
data() {
return {
swiperList: [] as SwiperViewItem[],
swiperIndex: -1,
$tabScrollView: null as null | INode,
$animationFinishIndex: 0,
$swiperWidth: 0
}
},
onLoad() {
for (let i = 0; i < 4; i++) {
this.swiperList.push({
title: "Tab " + i
} as SwiperViewItem)
}
},
onReady() {
this.$tabScrollView = this.$refs.get('tabScroll') as INode
this.$swiperWidth = (this.$refs["swiper"] as INode).getBoundingClientRect().width
this.setSwiperIndex(0, true)
},
methods: {
onTabClick(index : number) {
this.setSwiperIndex(index, false)
},
onSwiperTransition(e : SwiperTransitionEvent) {
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()
// 计算目标索引及边界检查
let move_to_index = current_index
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
}
// 计算偏移百分比
const percentage = Math.abs(current_offset_x) / this.$swiperWidth
// 通知更新指示线
this.updateTabIndicator(current_index, move_to_index, percentage)
},
onSwiperAnimationfinish(e : SwiperAnimationFinishEvent) {
this.setSwiperIndex(e.detail.current, true)
this.$animationFinishIndex = e.detail.current
},
setSwiperIndex(index : number, updateIndicator : boolean) {
if (this.swiperIndex == index) {
return
}
this.swiperIndex = index
if (updateIndicator) {
this.updateTabIndicator(index, index, 1)
}
},
updateTabIndicator(current_index : number, move_to_index : number, percentage : number) {
if (percentage == 0) {
return
}
// 缩放范围
const min_ratio = 1
const max_ratio = 1.5
const tabs = this.$refs["swipertab"] as INode[]
const current_node = tabs[current_index]!
const move_to_node = tabs[move_to_index]!
// 当前
const current_scale = this.lerpNumber(min_ratio, max_ratio, 1 - percentage)
current_node.style?.setProperty('transform', `scale(${current_scale})`)
// 目标
const move_to_scale = this.lerpNumber(min_ratio, max_ratio, percentage)
move_to_node.style?.setProperty('transform', `scale(${move_to_scale})`)
// 滚动到水平中心位置
const target_x = current_node.offsetLeft + (move_to_node.offsetLeft - current_node.offsetLeft) * percentage
const center_x = target_x + move_to_node.offsetWidth / 2 - this.$swiperWidth / 2
this.$tabScrollView?.setAttribute('scrollLeft', center_x)
},
/**
* 根据权重在两个值之间执行线性插值.
* @constructor
* @param {number} value1 - 第一个值,该值应为下限.
* @param {number} value2 - 第二个值,该值应为上限.
* @param {number} amount - 应介于 0 和 1 之间,指示内插的权重.
* @returns {number} 内插值
*/
lerpNumber(value1 : number, value2 : number, amount : number) : number {
return (value1 + (value2 - value1) * amount)
}
}
}
</script>
<style>
.flex-row {
flex-direction: row;
}
.swiper-list {
flex: 1;
}
.swiper-tabs-item {
color: #555;
font-size: 16px;
padding: 12px 25px 5px 25px;
transform-origin: left bottom;
}
.swiper-tabs-item-active {
color: #000000;
}
.swiper-view {
flex: 1;
}
.swiper-item {
flex: 1;
align-items: center;
justify-content: center;
}
.swiper-item-text {
font-size: 72px;
font-weight: bold;
}
</style>
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录