微信小程序 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/wukecheng@2x.png" 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/wukecheng@2x.png" 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/wukecheng@2x.png" 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/wukecheng@2x.png" 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. 效果以下:

相關文章
相關標籤/搜索