欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

微信小程序(九)scroll-view組件詳細(xì)介紹

 更新時(shí)間:2016年09月27日 11:44:01   作者:順子_RTFSC  
這篇文章主要介紹了微信小程序scroll-view組件詳細(xì)介紹的相關(guān)資料,需要的朋友可以參考下

scroll-view為滾動(dòng)視圖,分為水平滾動(dòng)和垂直滾動(dòng)。注意滾動(dòng)視圖垂直滾動(dòng)時(shí)一定要設(shè)置高度否則的話scroll-view不會(huì)生效。滾動(dòng)視圖常用的地方一般都是Item項(xiàng)比較多的界面,比如我的模塊

主要屬性:

使用演示:

wxml

<!--垂直滾動(dòng),這里必須設(shè)置高度-->
<scroll-view scroll-y="true" style="height: 200px">
 <view style="background: red; width: 100px; height: 100px" ></view>
 <view style="background: green; width: 100px; height: 100px"></view>
 <view style="background: blue; width: 100px; height: 100px"></view>
 <view style="background: yellow; width: 100px; height: 100px"></view>
</scroll-view>

<!-- white-space
 normal: 正常無(wú)變化(默認(rèn)處理方式.文本自動(dòng)處理?yè)Q行.假如抵達(dá)容器邊界內(nèi)容會(huì)轉(zhuǎn)到下一行)
 pre: 保持HTML源代碼的空格與換行,等同與pre標(biāo)簽
 nowrap: 強(qiáng)制文本在一行,除非遇到br換行標(biāo)簽
 pre-wrap: 同pre屬性,但是遇到超出容器范圍的時(shí)候會(huì)自動(dòng)換行
 pre-line: 同pre屬性,但是遇到連續(xù)空格會(huì)被看作一個(gè)空格
 inherit: 繼承
-->
<!--水平滾動(dòng)-->
<scroll-view scroll-x="true" style=" white-space: nowrap; display: flex" >
<!-- display: inline-block-->
 <view style="background: red; width: 200px; height: 100px; display: inline-block" ></view>
 <view style="background: green; width: 200px; height: 100px; display: inline-block"></view>
 <view style="background: blue; width: 200px; height: 100px; display: inline-block"></view>
 <view style="background: yellow; width: 200px; height: 100px; display: inline-block"></view>
</scroll-view>

相關(guān)文章:

hello WeApp                      icon組件
Window 
                            text組件                                switch組件
tabBar底部導(dǎo)航                 progress組件                        action-sheet
應(yīng)用生命周期                    button組件                            modal組件
頁(yè)面生命周期
                    checkbox組件                       toast組件
模塊化詳                           form組件詳                            loading 組件
數(shù)據(jù)綁定
                           input 組件                             navigator 組件
View組件                          picker組件                             audio 組件
scroll-view組件                 radio組件                              video組件
swiper組件                        slider組件                              Image組件

相關(guān)文章

最新評(píng)論