微信小程序 横向滑动实现

14 篇文章 1 订阅
9 篇文章 0 订阅
HTML代码
<view class="hotService">
        <view class="hotServiceList_box">
            <!-- 这里为滚动的内容部分 -->
            <scroll-view class="hotServiceList_scroll" scroll-x="true" bindscroll="getleft">
                <view class="hotService_content">
                    <block wx:for="{{dataList}}" wx:key="{{index}}">
                        <view class="block{{index}} block">
                            <view class="blockContent">
                                <text>第{{index + 1}}块内容</text>
                            </view>
                            <text style="margin-left: 20rpx;">第{{index + 1}}块内容</text>
                        </view>
                    </block>
                </view>
            </scroll-view>
            <!--滚动条部分-->
            <!-- <view class="slide" wx:if="{{slideShow}}">
                <view class='slide-bar'>
                    <view class="slide-show" style="width:{{slideWidth}}rpx; margin-left:{{slideLeft<=1 ? 0 : slideLeft+'rpx'}};"></view>
                </view>
            </view> -->
        </view>
    </view>
JS代码
Page({
  data: {
    // 滑动比例计算
    slideWidth: '', //滑块宽
    slideLeft: 0, //滑块位置
    totalLength: '', //当前滚动列表总长
    slideShow: false, //滑块是否显示
    slideRatio: '', //滑块比例
    // 渲染数据
    dataList: [{
        text: '第1块'
      },{
        text: '第2块'
      }, {
        text: '第3块'
      },{
        text: '第4块'
      },{
        text: '第5块'
      },{
        text: '第6块'
      }],
  },
})
CSS代码

.hotService {
    width: 100%;
    height: 300rpx;
    background-color: #fff;
    padding: 0 26rpx;
    box-sizing: border-box;
}

.hotServiceList_box {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.block {
    width: 188rpx;
    height: 258rpx;
    padding: 0 0rpx;
    display: inline-block;

}

.blockContent {
    width: 100%;
    height: 100%;
    background-color: rgb(101, 203, 243);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.block:first-child {
    padding: 0 15rpx 0 0;
}

.slide {
    height: 20rpx;
    background: #fff;
    width: 100%;
    padding: 14rpx 0 5rpx 0
}

.slide .slide-bar {
    width: 80rpx;
    margin: 0 auto;
    height: 10rpx;
    background: #eee;
    border-radius: 8rpx;
}

.slide .slide-bar .slide-show {
    height: 100%;
    border-radius: 8rpx;
    background-color: #00aeff;
}
实现效果

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值