效果图:1.scroll-view 中的需要滑动的元素不可以用 float 浮动使其一行展示;2.包裹scroll-view的元素如果用 display:flex; 是没有滚动效果的;scroll-view3.scroll-view 中的需要滑动的元素要用 dislay:inline-block; 进行元素的横向编排;dislay:inline-block4.包裹 scroll-view 的元素要加上样式–> overflow:hidden;white-space:nowrap;overflow:hidden;white-space:nowrap;5.有时候为了美观要隐藏滚动条,需要在样式里加上核心代码:核心代码:在wxss里加入以下代码
::-webkit-scrollbar{

width: 0;

height: 0;

color: transparent;
}
::-webkit-scrollbar{

width: 0;

height: 0;

color: transparent;
} scrollview属性总结总结总结