91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么用uni-app制作小程序實現左右菜單聯動效果

發布時間:2022-11-14 10:11:46 來源:億速云 閱讀:169 作者:iii 欄目:開發技術

這篇文章主要介紹“怎么用uni-app制作小程序實現左右菜單聯動效果”,在日常操作中,相信很多人在怎么用uni-app制作小程序實現左右菜單聯動效果問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”怎么用uni-app制作小程序實現左右菜單聯動效果”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

一、示意圖

示例:pandas 是基于NumPy 的一種工具,該工具是為了解決數據分析任務而創建的。

二、實現步驟與思路講解

1.靜態頁面的布局

頁面的布局——在實現具體功能之前,我們就要考慮所要實現的具體功能是什么,將靜態頁面結構搭建完成,頁面結構的構成,決定了后續功能的實現難易程度與方便度,這里我們所要實現的是左右菜單的聯動,這就需要用到滑動效果,在uni-app中可利用scroll-view實現這一效果,相關屬性如下
屬性類型默認值說明
scroll-xBooleanfalse允許橫向滾動
scroll-yBooleanfalse允許縱向滾動
scroll-into-viewString 值應為某子元素id(id不能以數字開頭)。設置哪個方向可滾動,則在哪個方向滾動到該元素
@scrollEventHandle 滾動時觸發,event.detail = {scrollLeft, scrollTop, scrollHeight, scrollWidth, deltaX, deltaY}

2.模擬數據格式

數據結構—— 沒有后臺接口的同學可以自行模擬數據 ,在開發中,自行模擬數據格式的能力也至關重要。這里所需要的數據結構應為: 頁面整體的數據是一個數組,其中左側菜單應為一個個的對象,其中每一個對象應該有一個子元素 name屬性名,它的值應為標題的文,另外還應有兩外一個子元素是一個數組,數組中的內容應為子菜單對應的數據。

3.左側菜單的點擊效果

實現思路:

可給左側菜單一個點擊事件,在點擊中觸發scroll-view 的scroll-into-view屬性,所以這里千萬不要忘記給子元素添加相應的id屬性,在點擊相應標題時,即可自動切換

相應代碼如下:

頁面屬性的設置

怎么用uni-app制作小程序實現左右菜單聯動效果

左側菜單的點擊事件

// 左側列表菜單的點擊事件
			changeIndex(index) {
				this.currentIndex = index;
				this.rightScrollinto = 'tab' + index;
				if (this.currentIndex < 6) {
					this.rightScrollinto = "tab0"
				}
			 this.leftScrollinto = 'left' + index;
 
			},

4.右側菜單的聯動效果

實現思路:

可獲得每一個子列表區塊的距離頂部的高度,那么這就涉及到要獲取具體的節點信息,在uni-app中相關的api可用于獲取某元素的節點信息,隨之聲明一個數組,將這些數據存放在一個數組中,然后判斷滑動的高度(這就需要用到scroll-view的@scroll事件,可獲取用戶滑動的距離)是否大于數組中的數據,若大于,則將該區域的索引傳遞到左側菜單中,左側菜單移動到對應的索引位置即可。

相關代碼:

	// 獲取右側滑動區域每一個子區域的高度
			getTop() {
				const query = uni.createSelectorQuery().in(this);
				query.selectAll('.demo3').boundingClientRect(data => {
					// console.log("得到布局位置信息" + JSON.stringify(data));
					// console.log("節點離頁面頂部的距離為" + data.top);
					if (data) {
						data.map((item, index) => {
							let top = index > 0 ? this.topList[index - 1] : 0;
							top += item.height;
							this.topList.push(top);
						})
					}
					console.log(this.topList);
				}).exec();
			},
			//右側滑動區域的滑動事件
			rightscroll(event) {
				// console.log(event.target.scrollTop)
				let scrollTop = event.target.scrollTop
				let result = this.topList.findIndex((item,index)=>{
				   return 	 scrollTop<=item
				})
				this.currentIndex = result;
				// this.changeIndex();
			}
		},

三、具體實現代碼

1.頁面結構

	<!-- 左側列表欄區域 s-->
		<view class="uni-padding-wrap uni-common-mt">
			<view class="d-flex">
				<scroll-view scroll-with-animation :scroll-top="scrollTop" 
				scroll-y="true" class="scroll-Y left-scroll"
					:scroll-into-view="rightScrollinto">
					<view @click="changeIndex(index)"  :id="'tab'+index" 
					v-for="(item,index) in listName" :key="item.id"
						:class="currentIndex == index?'active-class':''">
						{{item.name}}
					</view>
				</scroll-view>
				<scroll-view @scroll="rightscroll" scroll-with-animation :
					:scroll-top="scrollTop" scroll-y="true" class="scroll-Y right-scroll"
					:scroll-into-view="leftScrollinto">
					<view   :id="'left'+bindex" v-for="(bitem,bindex) in listName" :key="bindex" class="d-flex flex-wrap demo3">
						<view  v-for="(childItem, Aindex) in bitem.app_category_items" :key="childItem.id"
							class=" demo2 scroll-view-item uni-bg-red  demo2">
							<view class="img">
								<image :src="childItem.cover" mode="scaleToFill"></image>
							</view>
							<view class="text">
								<text>{{childItem.name}}</text>
							</view>
						</view>
					</view>
 
				</scroll-view>
			</view>
		</view>

2.相關樣式

.left-scroll {
		width: 30%;
		background: #f4f4f4;
		text-align: center;
	}
	.left-scroll view {
		height: 120rpx;
		line-height: 120rpx;
	}
 
	.right-scroll {
		width: 70%;
	}
 
	.right-scroll .demo2 {
		width: 33%;
		text-align:center;
		margin-top:0;
	}
	image {
		width: 120rpx;
		height: 120rpx;
	}
	.active-class {
		color: orange;
		background: white;
		border-top-right-radius: 10rpx;
		border-bottom-right-radius: 10rpx;
	}

3.業務邏輯部分

 <script>
	import {
		getCate
	} from '../../api/cate.js';
	export default {
		data() {
			return {
				currentIndex: 0,
				listName: [],
				scrollH: 0,
				// 表明左右兩側滑動的標志scroll-into-view
				rightScrollinto: '',
				leftScrollinto: '',
				// 用一個數組承載每一個子區塊的距離頂部的高度
				topList: [],
 
			}
		},
		mounted() {
			this.getCate();
			// 使用定時器獲取區塊節點信息
			setTimeout(() => {
				this.getTop();
			}, 500)
		},
		onLoad() {
			// 異步獲取系統信息,包括屏幕高度等
			uni.getSystemInfo({
				success: (res) => {
					console.log(res);
					// #ifdef MP
					this.scrollH = res.windowHeight - uni.upx2px(88)
					// #endif
				}
			});
 
		},
		methods: {
			// 調用獲取分類頁數據的方法
			getCate() {
				getCate().then((response) => {
					console.log(response)
					this.listName = response.data
				})
			},
			// 左側列表菜單的點擊事件
			changeIndex(index) {
				this.currentIndex = index;
				this.rightScrollinto = 'tab' + index;
				if (this.currentIndex < 6) {
					this.rightScrollinto = "tab0"
				}
			 this.leftScrollinto = 'left' + index;
 
			},
			// 獲取右側滑動區域每一個子區域的高度
			getTop() {
				const query = uni.createSelectorQuery().in(this);
				query.selectAll('.demo3').boundingClientRect(data => {
					// console.log("得到布局位置信息" + JSON.stringify(data));
					// console.log("節點離頁面頂部的距離為" + data.top);
					if (data) {
						data.map((item, index) => {
							let top = index > 0 ? this.topList[index - 1] : 0;
							top += item.height;
							this.topList.push(top);
						})
					}
					console.log(this.topList);
				}).exec();
			},
			//右側滑動區域的滑動事件
			rightscroll(event) {
				// console.log(event.target.scrollTop)
				let scrollTop = event.target.scrollTop
				let result = this.topList.findIndex((item,index)=>{
				   return 	 scrollTop<=item
				})
				this.currentIndex = result;
				// this.changeIndex();
			}
		},
 
	}
</script>

到此,關于“怎么用uni-app制作小程序實現左右菜單聯動效果”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宜宾市| 高雄县| 寿宁县| 桦甸市| 河北省| 珲春市| 拉萨市| 庄浪县| 高雄县| 安宁市| 上杭县| 高邮市| 阿拉善左旗| 伊川县| 绥中县| 辰溪县| 英吉沙县| 云龙县| 永丰县| 白河县| 诸城市| 玉树县| 赫章县| 彰化市| 静海县| 凤台县| 阳朔县| 靖远县| 隆化县| 广州市| 株洲市| 乐安县| 祁阳县| 旅游| 二连浩特市| 禹州市| 江安县| 商城县| 盘锦市| 巨野县| 霍林郭勒市|