Home > WeChat Applet > WeChat Development > Detailed explanation and example code of slider developed by WeChat

Detailed explanation and example code of slider developed by WeChat

零下一度
Release: 2017-05-25 10:29:23
Original
2718 people have browsed it

This article mainly introduces the detailed explanation and example code of the WeChat applet Detailed explanation and example code of slider developed by WeChat. Friends in need can refer to the

implementation renderings:

Detailed explanation and example code of slider developed by WeChat

Sliding selector

Attribute name Type Default value Description
min Number 0 Minimum
max Number 100 Maximum value
step Number 1 Step size, the value must be greater than 0 and divisible by (max - min)
disabled Boolean false Whether to disable
value Number 0 Current value
show-value Boolean false Whether to display the current value
bindchange EventHandle Event triggered after completing a drag, event.detail = {value:value}

Sample code:

<view class="section section_gap">
 <text class="sectiontitle">设置left/right icon</text>
 <view class="body-view">
 <Detailed explanation and example code of slider developed by WeChat bindchange="Detailed explanation and example code of slider developed by WeChat1change" left-icon="cancel" right-icon="success_no_circle"/>
 </view>
</view>

<view class="section section_gap">
 <text class="sectiontitle">设置step</text>
 <view class="body-view">
 <Detailed explanation and example code of slider developed by WeChat bindchange="Detailed explanation and example code of slider developed by WeChat2change" step="5"/>
 </view>
</view>

<view class="section section_gap">
 <text class="sectiontitle">显示当前value</text>
 <view class="body-view">
 <Detailed explanation and example code of slider developed by WeChat bindchange="Detailed explanation and example code of slider developed by WeChat3change" show-value/>
 </view>
</view>

<view class="section section_gap">
 <text class="sectiontitle">设置最小/最大值</text>
 <view class="body-view">
 <Detailed explanation and example code of slider developed by WeChat bindchange="Detailed explanation and example code of slider developed by WeChat4change" min="50" max="200" show-value/>
 </view>
</view>
Copy after login
var pageData = {}
for(var i = 1; i < 5; ++i) {
 (function (index) {
 pageData[`Detailed explanation and example code of slider developed by WeChat${index}change`] = function(e) {
 console.log(`Detailed explanation and example code of slider developed by WeChat${index}发生change事件,携带值为`, e.detail.value)
 }
 })(i);
}
Page(pageData)
Copy after login

[Related recommendations]

1. WeChat public account platform source code download

2. WeChat voting source code

3. WeChat LaLa Takeout 2.2.4 decrypted open source version of WeChat Rubik’s Cube source code

The above is the detailed content of Detailed explanation and example code of slider developed by WeChat. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template