淺談VUE uni-app 基礎組件

1 .scroll-view

使用豎向滾動時,需要給 一個固定高度,通過 css 設置 height;使用橫向滾動時,需要給添加white-space: nowrap;樣式。

scroll-y:允許縱向滾動,scroll-x:允許橫向滾動

@scroll: 滾動時觸發,event.detail = {scrollLeft, scrollTop, scrollHeight, scrollWidth, deltaX, deltaY}

數據雙向綁定

<template>
	<view>
		<scroll-view class="scroll" scroll-y="true" @scroll="scroll">
			<view v-for="i in 100">{{i}}</view>
		</scroll-view>
	</view>

</template>

<script>
	export default {
		data() {
			return {
				flag:true
			}
		},
		methods: {
			scroll(e){
				console.log(e.detail);
			}
		}
	}
</script>

<style>
	.scroll{
		height:400rpx;
	}
</style>

總結

本篇文章就到這裡瞭,希望能夠給你帶來幫助,也希望您能夠多多關註WalkonNet的更多內容!

推薦閱讀: