docs(Checkbox): add custom shape demo (#2112)

This commit is contained in:
neverland 2019-09-30 15:29:46 +08:00 committed by GitHub
parent d23777b780
commit 577cb8fa72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 48 additions and 42 deletions

View File

@ -5,16 +5,13 @@ Page({
checkbox1: true, checkbox1: true,
checkbox2: true, checkbox2: true,
checkbox3: true, checkbox3: true,
checkboxShape: true,
list: ['a', 'b', 'c'], list: ['a', 'b', 'c'],
result: ['a', 'b'], result: ['a', 'b'],
result2: [], result2: [],
result3: [], result3: [],
icon: { activeIcon: 'https://img.yzcdn.cn/vant/user-active.png',
normal: inactiveIcon: 'https://img.yzcdn.cn/vant/user-inactive.png'
'https://img.yzcdn.cn/public_files/2017/10/13/c547715be149dd3faa817e4a948b40c4.png',
active:
'https://img.yzcdn.cn/public_files/2017/10/13/793c77793db8641c4c325b7f25bf130d.png'
}
}, },
onChange(event) { onChange(event) {

View File

@ -26,6 +26,18 @@
</van-checkbox> </van-checkbox>
</demo-block> </demo-block>
<demo-block title="自定义形状">
<van-checkbox
value="{{ checkboxShape }}"
data-key="checkboxShape"
shape="square"
custom-class="demo-checkbox"
bind:change="onChange"
>
复选框
</van-checkbox>
</demo-block>
<demo-block title="自定义颜色"> <demo-block title="自定义颜色">
<van-checkbox <van-checkbox
value="{{ checkbox2 }}" value="{{ checkbox2 }}"
@ -47,7 +59,12 @@
bind:change="onChange" bind:change="onChange"
> >
自定义图标 自定义图标
<image mode="widthFix" slot="icon" src="{{ checkbox3 ? icon.active : icon.normal }}" class="icon" /> <image
slot="icon"
class="icon"
mode="widthFix"
src="{{ checkbox3 ? activeIcon : inactiveIcon }}"
/>
</van-checkbox> </van-checkbox>
</demo-block> </demo-block>
@ -83,7 +100,7 @@
<van-cell <van-cell
wx:for="{{ list }}" wx:for="{{ list }}"
wx:key="*this" wx:key="*this"
title="复选框{{ item }}" title="复选框 {{ item }}"
value-class="value-class" value-class="value-class"
clickable clickable
data-index="{{ index }}" data-index="{{ index }}"

View File

@ -14,7 +14,7 @@
### 基础用法 ### 基础用法
通过`value`绑定 checkbox 的勾选状态 通过`value`绑定复选框的勾选状态
```html ```html
<van-checkbox value="{{ checked }}" bind:change="onChange">复选框</van-checkbox> <van-checkbox value="{{ checked }}" bind:change="onChange">复选框</van-checkbox>
@ -36,24 +36,30 @@ Page({
### 禁用状态 ### 禁用状态
通过设置`disabled`属性可以禁用复选框
```html ```html
<van-checkbox <van-checkbox disabled value="{{ checked }}" bind:change="onChange">
disabled 复选框
value="{{ checked }}" </van-checkbox>
bind:change="onChange" ```
>
### 自定义形状
`shape`属性设置为`square`,复选框的形状会变成方形
```html
<van-checkbox value="{{ checked }}" shape="square" bind:change="onChange">
复选框 复选框
</van-checkbox> </van-checkbox>
``` ```
### 自定义颜色 ### 自定义颜色
通过`checked-color`属性可以自定义选中状态下的图标颜色
```html ```html
<van-checkbox <van-checkbox value="{{ checked }}" checked-color="#07c160" bind:change="onChange">
value="{{ checked }}"
checked-color="#07c160"
bind:change="onChange"
>
复选框 复选框
</van-checkbox> </van-checkbox>
``` ```
@ -65,10 +71,7 @@ Page({
```html ```html
<van-checkbox use-icon-slot value="{{ checked }}" bind:change="onChange"> <van-checkbox use-icon-slot value="{{ checked }}" bind:change="onChange">
自定义图标 自定义图标
<image <image slot="icon" src="{{ checked ? activeIcon : inactiveIcon }}" />
slot="icon"
src="{{ checked ? icon.active : icon.normal }}"
/>
</van-checkbox> </van-checkbox>
``` ```
@ -76,10 +79,8 @@ Page({
Page({ Page({
data: { data: {
checked: true, checked: true,
icon: { activeIcon: '//img.yzcdn.cn/icon-active.png',
normal: '//img.yzcdn.cn/icon-normal.png', inactiveIcon: '//img.yzcdn.cn/icon-normal.png'
active: '//img.yzcdn.cn/icon-active.png'
}
}, },
onChange(event) { onChange(event) {
@ -96,20 +97,15 @@ Page({
```html ```html
<van-checkbox-group value="{{ result }}" bind:change="onChange"> <van-checkbox-group value="{{ result }}" bind:change="onChange">
<van-checkbox <van-checkbox name="a">复选框 a</van-checkbox>
wx:for="{{ list }}" <van-checkbox name="b">复选框 b</van-checkbox>
wx:key="index" <van-checkbox name="c">复选框 c</van-checkbox>
name="{{ item }}"
>
复选框 {{ item }}
</van-checkbox>
</van-checkbox-group> </van-checkbox-group>
``` ```
```javascript ```javascript
Page({ Page({
data: { data: {
list: ['a', 'b', 'c'],
result: ['a', 'b'] result: ['a', 'b']
}, },
@ -125,13 +121,9 @@ Page({
```html ```html
<van-checkbox-group value="{{ result }}" bind:change="onChange" max="{{ 2 }}"> <van-checkbox-group value="{{ result }}" bind:change="onChange" max="{{ 2 }}">
<van-checkbox <van-checkbox name="a">复选框 a</van-checkbox>
wx:for="{{ list }}" <van-checkbox name="b">复选框 b</van-checkbox>
wx:key="index" <van-checkbox name="c">复选框 c</van-checkbox>
name="{{ item }}"
>
复选框 {{ item }}
</van-checkbox>
</van-checkbox-group> </van-checkbox-group>
``` ```