1. 程式人生 > 實用技巧 >微信小程式 scroll-view 水平滾動實現過程解析

微信小程式 scroll-view 水平滾動實現過程解析

1. scroll-view水平滾動使用

1. wxml

<scroll-view class="scroll-wrap" scroll-x>
   <view class="scroll-view-item">
    <view class="scroll-img-wrap scroll-major-img-wrap">
     <image src="../../images/[email protected]" class="img-responsive" />
    </view>
    <text class="scroll-title scroll-major-title">膳食與營養膳食與營養膳食...</text>
   </view>
   <view class="scroll-view-item">
    <view class="scroll-img-wrap scroll-major-img-wrap">
     <image src="../../images/[email protected]" class="img-responsive" />
    </view>
    <text class="scroll-title scroll-major-title">膳食與營養膳食與營養膳食...</text>
   </view>
   <view class="scroll-view-item">
    <view class="scroll-img-wrap scroll-major-img-wrap">
     <image src="../../images/[email protected]" class="img-responsive" />
    </view>
    <text class="scroll-title scroll-major-title">膳食與營養膳食與營養膳食...</text>
   </view>
   <view class="scroll-view-item">
    <view class="scroll-img-wrap scroll-major-img-wrap">
     <image src="../../images/[email protected]" class="img-responsive" />
    </view>
    <text class="scroll-title scroll-major-title">膳食與營養膳食與營養膳食...</text>
   </view>
  </scroll-view>

2. wxss

.scroll-wrap {
 min-width: 100%;
 height: 360rpx;
 white-space: nowrap; /*不可缺少*/
}
.scroll-view-item {
 width: 68%;
 height: 360rpx;
 display: inline-block; // 可以使每一項水平排列
}
.scroll-view-item + .scroll-view-item {
 margin-left: 16rpx;
}
::-webkit-scrollbar{ // 隱藏滾動條
  width: 0;
  height: 0;
  color: transparent;
}
 .scroll-img-wrap {
 width: 100%;
 height: 280rpx;
 overflow: hidden;
 border-radius: 8rpx;
}
.scroll-title {
  white-space: nowrap;
 overflow: hidden;
 text-overflow: ellipsis;
 display: block;
}
.scroll-major-img-wrap {
 height: 280rpx;
}
.scroll-major-title {
 margin: 16rpx 8rpx;
}  

2. scroll-view 隱藏滾動條

::-webkit-scrollbar{
  width: 0;
  height: 0;
  color: transparent;
}

3. 效果如下:

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援碼農教程。