滚动标签报For developer:scroll-view 'type' property is?
<!--pages/list/list.wxml-->
<text>pages/list/list.wxml</text>
<scroll-view class="v" scroll-y="true">
<view class="v1">1</view>
<view class="v2">2</view>
<view class="v3">3</view>
</scroll-view>
/* pages/list/list.wxss */
.v{
width: 101px;
height: 120px;
}
.v view{
width: 100px;
height: 100px;
text-align: center;
line-height: 100px;
}
.v1{
background-color: aqua;
}
.v2{
background-color: rgb(0, 255, 106);
}
.v3{
background-color: rgb(76, 0, 255);}