小程序實踐(十四):橫向滾動列表


wxss文件樣式

/*內層橫向滾動列表*/
.rowItem {
    display: inline-block;
}
.scroll-x{
    white-space:nowrap;
    display:flex;
}
 .item-image{
   width: 80px;
   height: 80px;
   margin-right: 2px;
  }
 

wxml 布局

<scroll-view class="scroll-x" scroll-x="true" scroll-x>
        <view wx:for="{{pictures}}" class="rowItem">
            
            <image class="item-image" src="../../../image/icon_product.png" mode="aspectFill">
            </image>
        </view>
</scroll-view>

 

 

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM