uniapp滚动消息列表

两个相同的循环列表,循环滚动

html 复制代码
<view class="winners_list uni-flex uni-column" :animation="animationData">
												<view v-for="(item, index) in winnersList" :key="index" class="li uni-flex uni-column">
													<img :src="item.img" alt="" />
													<view>
														<div class="info">
															<span>
																<text>{{ item.info }}</text>
															</span>
															<span>
																<text>{{ item.date }}</text>
															</span>
														</div>
														<div class="prize_name">
															<text>{{ item.prize }}</text>
														</div>
													</view>
												</view>
											</view>
											<view class="winners_list uni-flex uni-column" :animation="animationData">
												<view v-for="(item, index) in winnersList" :key="index" class="li uni-flex uni-column">
													<img :src="item.img" alt="" />
													<view>
														<div class="info">
															<span>
																<text>{{ item.info }}</text>
															</span>
															<span>
																<text>{{ item.date }}</text>
															</span>
														</div>
														<div class="prize_name">
															<text>{{ item.prize }}</text>
														</div>
													</view>
												</view>
											</view>
javascript 复制代码
   //滚动 
			getHeight(Class) {
				let query = uni.createSelectorQuery().in(this);
				query
					.selectAll(Class)
					.boundingClientRect(data => {
						this.height = data[0].height;
					})
					.exec();
			},
			prizeScroll() {
				let speed = 50;
				let animation = uni.createAnimation({
					duration: this.getHeight('.winners_list') / speed,
					timingFunction: 'linear',
					delay: 0
				});
				this.animation = animation;
			this.timer=setInterval(() => {
				console.log('123');
					if (this.scrollHeight >= this.height) {
						this.stopScroll()
						this.prizeScroll()
					} else {
						this.scrollHeight = this.scrollHeight + 1;
						animation.translateY(-this.scrollHeight).step();
						this.animationData = animation.export();
					}
				}, speed);
			},
			
			// 停止动画
			stopScroll(){
				if(this.timer){
					clearInterval(this.timer)
				}
				this.animation.translateY(0).step();
				this.scrollHeight = 0;
				this.animationData = this.animation.export();
			},
			
			
			
			taBtn(index){
				this.currentIndex=index;
				if(index==1){
					this.$nextTick(()=>{
							this.prizeScroll();
					})
				}else{
					this.stopScroll()
				}
			}
相关推荐
阿征学IT8 分钟前
ES6 特性
前端·es6
网络安全Max29 分钟前
Web 学习笔记 - 网络安全
前端·笔记
xiajia12334 分钟前
Flutter OHOS flutter_image_crop(图片裁剪)
前端
潜心专研的小张同学36 分钟前
解决 Vite 项目启动时端口重复问题的总结
前端·vue.js·vite
良_1231 小时前
el-table 多表头+跨行跨列案例
前端·javascript·vue.js
jjw_zyfx1 小时前
css 动画实现从中间到两边亮度逐渐变暗的流水灯效果
前端·javascript·css
forestsea1 小时前
【Elasticsearch】高亮搜索:从原理到Web呈现
大数据·前端·elasticsearch
Domain-zhuo1 小时前
Webpack中loader的作用/ loader是什么?
前端·javascript·vue.js·webpack·node.js·vue
一朵好运莲1 小时前
React:闭包陷阱产生和解决
前端·javascript·react.js
开花大馒头2 小时前
在项目中import 语句通常遵循的顺序规范
前端·javascript·react.js