您的位置:首页 > 娱乐 > 明星 > 设计本官方网站电脑版_数商云网络科技_头条发布视频成功显示404_虎扑体育网体育

设计本官方网站电脑版_数商云网络科技_头条发布视频成功显示404_虎扑体育网体育

2024/12/26 0:16:05 来源:https://blog.csdn.net/qq_69183322/article/details/143447594  浏览:    关键词:设计本官方网站电脑版_数商云网络科技_头条发布视频成功显示404_虎扑体育网体育
设计本官方网站电脑版_数商云网络科技_头条发布视频成功显示404_虎扑体育网体育

一、下拉刷新

1. 首先找到pages.json中

给需要进行下拉刷新的页面设置可以下拉刷新

2. 然后在需要实现下拉刷新的script标签内添加

导入onPullDownRefresh

import {onPullDownRefresh} from '@dcloudio/uni-app'

 下拉刷新触发的事件

onPullDownRefresh(()=> {console.log('正在刷新中......');setTimeout(function () {uni.stopPullDownRefresh();}, 1000);
})

二、上拉触底

1.在需要实现上拉触底的script标签内添加

import {onPullDownRefresh} from '@dcloudio/uni-app'
onReachBottom(()=>{console.log('触底啦!')
})	

三、上滑加载

一般用于短视频,向上滑动触发时间,跳转到下一个视频

1. 在需要实现上滑加载的组件上加上参数touchstart、touchmove、touchend:

<view class="layout"  @touchstart="touchStart"@touchmove="touchMove"@touchend="touchEnd">//短视频
</view>

2.  在需要实现上滑加载的script标签内添加

// 定义变量
const isLoading = ref(false); // 标记是否正在加载
const startY = ref(0); // 记录触摸开始的Y坐标
const distanceThreshold = 60; // 设置触发加载的距离阈值// 模拟加载数据的函数
const loadData = () => {if (isLoading.value) return; // 如果正在加载,则不重复触发isLoading.value = true;console.log('加载更多数据...');// 模拟加载过程setTimeout(() => {isLoading.value = false;// 这里可以添加实际加载数据的逻辑,比如调用API获取数据}, 1000);
};// 触摸开始事件
const touchStart = (event) => {startY.value = event.touches[0].clientY;
};// 触摸移动事件
const touchMove = (event) => {const moveY = event.touches[0].clientY;const distance = startY.value - moveY; // 计算滑动的距离// 如果向上滑动并且超过阈值,则触发加载if (distance > distanceThreshold) {loadData();}
};// 触摸结束事件
const touchEnd = () => {startY.value = 0; // 重置开始Y坐标
};

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com