You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
620 B
16 lines
620 B
<!--pages/test/scrollview.wxml-->
|
|
<text>pages/test/scrollview.wxml</text>
|
|
<view class="demobox">
|
|
<view class="title">1.纵向滚动</view>
|
|
<scroll-view scroll-y="true">
|
|
<view class="scroll-item-y">第一页</view>
|
|
<view class="scroll-item-y">第二页</view>
|
|
<view class="scroll-item-y">第三页</view>
|
|
</scroll-view>
|
|
<view class="title">2.横向滚动</view>
|
|
<scroll-view scroll-x="true">
|
|
<view class="scroll-item-x">第一页</view>
|
|
<view class="scroll-item-x">第二页</view>
|
|
<view class="scroll-item-x">第三页</view>
|
|
</scroll-view>
|
|
</view> |