微信小程序自定义scroll-view的实例代码

时间:2021-11-12 11:05:01

小程序自定义 scroll-view 滚动条

话不多说, 直接上效果图

效果图

微信小程序自定义scroll-view的实例代码

wxml代码

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<scroll-view scroll-x
 class="scroll-view"
 bindscroll="bindScroll">
<block wx:for="{{arr}}" wx:key="index">
<view class="scroll-item">scroll-view{{index}}</view>
</block>
</scroll-view>
 
<!-- 滚动条 -->
<view class="slide">
<view class='slide-bar'>
<view class="slide-action"
 style="width:{{slideWidth}}rpx; margin-left:{{slideLeft<=1 ? 0 : slideLeft+'rpx'}};">
</view>
</view>
</view>

wxss代码

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
page{
height: 100vh;
background: rgb(111, 80, 65)
}
.scroll-view{
display: flex;
width: 100%;
white-space: nowrap;
padding-top: 20rpx;
}
 
.scroll-item:nth-child(1){
margin-left: 40rpx;
}
 
.scroll-item {
display: inline-block;
width: 550rpx;
height: 463rpx;
background: rgba(199, 180, 165);
border-radius: 20rpx;
margin-right: 30rpx;
color: #fff;
}
 
.slide{
background:rgb(111, 80, 65);
width:100%;
padding-top:20rpx;
}
.slide .slide-bar{
width:180rpx;
margin:0 auto;
height: 4rpx;
background: rgba(255,255,255,.2);
}
 
.slide .slide-bar .slide-action{
height:100%;
background:#fff;
}

js代码

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/**
* 页面的初始数据
*/
data: {
arr: 10,
slideWidth: '',
slideLeft: ''
},
 
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
// 计算比例
this.calcRatio();
},
 
/**
* 计算比例
*/
calcRatio() {
var windowWidth = wx.getSystemInfoSync().windowWidth;
// 计算列表总长度
var totalLength = (this.data.arr * 580) + 40;
// 计算滑块的比例
var slideRatio = 180 / totalLength * (750 / windowWidth);
/**
* 屏幕总长度 / 列表总长度 = 滑块占滚动条长度的比例
* 滑块占滚动条长度的比例 * 滚动列表的长度 = 滑块的宽度
*/
var sliderWidth = 750 / totalLength * 180;
this.setData({
slideWidth: sliderWidth,
totalLength: totalLength,
slideRatio: slideRatio
})
},
 
/**
* 监听滚动
*/
bindScroll(e) {
this.setData({
slideLeft: e.detail.scrollLeft * this.data.slideRatio
})
},

附:scroll-view可滚动视图区域

微信小程序自定义scroll-view的实例代码

总结

到此这篇关于微信小程序自定义scroll-view的文章就介绍到这了,更多相关微信小程序自定义scroll-view内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/weixin_44227577/article/details/105906827