uniapp scroll-view 点击左右方向按键自动滚动到设置位置

html 复制代码
    //左按钮
		<image  src="" @click="slideLeft">
		</image>


		<scroll-view class="uni-swiper-tab" scroll-x ref="scrollView"  :scroll-left="scrollLeft">
			
			<view class="scrollx_items" v-for="(img,index) in scrollimg" :key="index" :class="scrollxIndex==index?'':'mengbu'" @click="previewImgClick(index)">

				<image style="z-index:-1;" class="scrollx_items_img" :src="img"   :class="scrollxIndex==index?'jinbian':''"></image>

			</view>
			
		</scroll-view>
		
    //右按钮
		<image  @click="slideRight">
		</image>
		
javascript 复制代码
			slideLeft(event) {
				this.scrollLeft = event.detail.x-100; 
				

			},
			slideRight(event) {
				this.scrollLeft = event.detail.x+ 100; // 获取点击位置的x坐标
		
				// setTimeout(() => {
				// 	this.$refs.scrollView.scrollLeft= this.targetX ; // 根据点击位置计算滚动目标位置
				// }, 300); // 设定滚动动画持续时间(单位ms)
			}
相关推荐
我爱写代码i3 小时前
AI对话绘画数字人源码 - uniapp前端
前端·人工智能·uni-app
ModyQyW3 小时前
vite-plugin-uni-pages 更新了什么
前端·uni-app
2501_9159184111 小时前
Flutter项目配置iOS混淆的详细步骤与工具推荐
android·flutter·ios·小程序·uni-app·cocoa·iphone
梦曦i11 小时前
create-uni-app v1.2.0:交互体验优化
前端·uni-app
lhldsg1 天前
智慧场馆解决方案小程序开发实战:从架构设计到部署指南
java·小程序·uni-app
skiyee1 天前
🚀 用 17 行代码给 UniApp 加上全局登录拦截
前端·uni-app
Mark108591 天前
【踩坑】Uni-app微信小程序自定义组件在 Flex 布局中未铺满整行
微信小程序·小程序·uni-app
梦曦i1 天前
create-uni-app v1.1.0:结构化生成,工程骨架更规范
前端·uni-app
2501_916007472 天前
Flutter与游戏App加固避坑指南:如何为混合开发与高交互应用选对安全方案?
安全·flutter·游戏·ios·小程序·uni-app·iphone
PedroQue992 天前
@meng-xi/create-uni-app v1.0.0 正式发布
前端·uni-app