uniapp scroll-view

使用scorll-view横向拖动应该注意些什么?
1.scroll-view 中的需要滑动的元素不可以用 float 浮动;
2.scroll-view 中的包裹需要滑动的元素的大盒子用 display:flex; 是没有作用的;
3.scroll-view 中的需要滑动的元素要用 dislay:inline-block; 进行元素的横向编排;
4.包裹 scroll-view 的大盒子有明确的宽和加上样式–> overflow:hidden;white-space:nowrap;

<scroll-view class="scrollview-box" scroll-x="true">
	<view>A</view>
	<view>B</view>
	<view>C</view>		
</scroll-view>

使用scroll-view纵向拖动应该注意什么?
scroll-view的高度必须确定,标签上得有scroll-y属性为true

<scroll-view scroll-y="true"  style="height:200rpx"></scroll-view>

你可能感兴趣的:(uniapp,uniapp,scroll-view,横向拖动,纵向拖动)