js-components-basic-button.md 7.6 KB
Newer Older
Z
zengyawen 已提交
1 2
# button

H
geshi  
HelloCrease 已提交
3 4
>  **说明:**
>  从API version 4开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
Z
zengyawen 已提交
5

S
sienna1128 已提交
6
按钮组件,包括胶囊按钮、圆形按钮、文本按钮、弧形按钮、下载按钮。
Z
zengyawen 已提交
7

Z
zengyawen 已提交
8 9

## 子组件
Z
zengyawen 已提交
10 11 12

不支持。

Z
zengyawen 已提交
13 14 15 16 17

## 属性

除支持[通用属性](../arkui-js/js-components-common-attributes.md)外,还支持如下属性:

H
geshi  
HelloCrease 已提交
18 19
| 名称                     | 类型      | 默认值   | 必填   | 描述                                       |
| ---------------------- | ------- | ----- | ---- | ---------------------------------------- |
S
sienna1128 已提交
20
| type                   | string  | -     | 否    | 不支持动态修改。默认展示类胶囊型按钮,不同于胶囊类型,四边圆角可以通过border-radius分别指定。该属性可选值包括:<br/>-&nbsp;capsule:胶囊型按钮,带圆角按钮,有背景色和文本;<br/>-&nbsp;circle:圆形按钮,支持放置图标;<br/>-&nbsp;text:文本按钮,仅包含文本显示;<br/>-&nbsp;arc:弧形按钮,仅支持智能穿戴;<br/>-&nbsp;download:下载按钮,额外增加下载进度条功能。 |
H
geshi  
HelloCrease 已提交
21 22 23 24
| value                  | string  | -     | 否    | button的文本值。                              |
| icon                   | string  | -     | 否    | button的图标路径,图标格式为jpg,png和svg。            |
| placement<sup>5+</sup> | string  | end   | 否    | 仅在type属性为缺省时生效,设置图标位于文本的位置,可选值为:<br/>-&nbsp;start:图标位于文本起始处;<br/>-&nbsp;end:图标位于文本结束处;<br/>-&nbsp;top:图标位于文本上方;<br/>-&nbsp;bottom:图标位于文本下方。 |
| waiting                | boolean | false | 否    | waiting状态,waiting为true时展现等待中转圈效果,位于文本左侧。类型为download时不生效。 |
Z
zengyawen 已提交
25 26 27 28 29 30 31 32 33


## 样式


### type设置为非arc

除支持[通用样式](../arkui-js/js-components-common-styles.md)外,还支持如下样式:

H
geshi  
HelloCrease 已提交
34 35
| 名称          | 类型                         | 默认值             | 必填   | 描述                                       |
| ----------- | -------------------------- | --------------- | ---- | ---------------------------------------- |
36
| text-color  | &lt;color&gt;              | \#007dff<br/> | 否    | 按钮的文本颜色。                                 |
H
geshi  
HelloCrease 已提交
37 38 39 40 41 42 43 44 45
| font-size   | &lt;length&gt;             | 16px<br/>       | 否    | 按钮的文本尺寸。                                 |
| allow-scale | boolean                    | true            | 否    | 按钮的文本尺寸是否跟随系统设置字体缩放尺寸进行放大缩小。<br/>如果在config描述文件中针对ability配置了fontSize的config-changes标签,则应用不会重启而直接生效。 |
| font-style  | string                     | normal          | 否    | 按钮的字体样式。                                 |
| font-weight | number&nbsp;\|&nbsp;string | normal          | 否    | 按钮的字体粗细。见[text组件font-weight的样式属性](../arkui-js/js-components-basic-text.md#样式)。 |
| font-family | &lt;string&gt;             | sans-serif      | 否    | 按钮的字体列表,用逗号分隔,每个字体用字体名或者字体族名设置。列表中第一个系统中存在的或者通过[自定义字体](../arkui-js/js-components-common-customizing-font.md)指定的字体,会被选中作为文本的字体。 |
| icon-width  | &lt;length&gt;             | -               | 否    | 设置圆形按钮内部图标的宽,默认填满整个圆形按钮。<br/>icon使用svg图源时必须设置该样式。 |
| icon-height | &lt;length&gt;             | -               | 否    | 设置圆形按钮内部图标的高,默认填满整个圆形按钮。<br/>icon使用svg图源时必须设置该样式。 |
| radius      | &lt;length&gt;             | -               | 否    | 按钮圆角半径。在圆形按钮类型下该样式优先于通用样式的width和height样式。 |

Z
zengyawen 已提交
46 47 48

### type设置为arc

W
wangshuainan 已提交
49
除支持[通用样式](../arkui-js/js-components-common-styles.md)中background-color、opacity、display、visibility、position、[left|top|right|bottom]外,还支持如下样式:
Z
zengyawen 已提交
50

H
geshi  
HelloCrease 已提交
51 52 53 54 55 56 57 58
| 名称          | 类型                         | 默认值        | 必填   | 描述                                       |
| ----------- | -------------------------- | ---------- | ---- | ---------------------------------------- |
| text-color  | &lt;color&gt;              | \#de0000   | 否    | 弧形按钮的文本颜色。                               |
| font-size   | &lt;length&gt;             | 37.5px     | 否    | 弧形按钮的文本尺寸。                               |
| allow-scale | boolean                    | true       | 否    | 弧形按钮的文本尺寸是否跟随系统设置字体缩放尺寸进行放大缩小。           |
| font-style  | string                     | normal     | 否    | 弧形按钮的字体样式。                               |
| font-weight | number&nbsp;\|&nbsp;string | normal     | 否    | 弧形按钮的字体粗细。见[text组件font-weight的样式属性](../arkui-js/js-components-basic-text.md#样式)。 |
| font-family | &lt;string&gt;             | sans-serif | 否    | 按钮的字体列表,用逗号分隔,每个字体用字体名或者字体族名设置。列表中第一个系统中存在的或者通过[自定义字体](../arkui-js/js-components-common-customizing-font.md)指定的字体,会被选中作为文本的字体。 |
Z
zengyawen 已提交
59 60 61 62 63 64 65 66 67 68


## 事件

支持[通用事件](../arkui-js/js-components-common-events.md)


## 方法

支持[通用方法](../arkui-js/js-components-common-methods.md)
Z
zengyawen 已提交
69 70 71

类型为download时,支持如下方法:

H
geshi  
HelloCrease 已提交
72 73 74
| 名称          | 参数                             | 描述                                       |
| ----------- | ------------------------------ | ---------------------------------------- |
| setProgress | {&nbsp;progress:percent&nbsp;} | 设定下载按钮进度条进度,取值位于0-100区间内,当设置的值大于0时,下载按钮展现进度条。当设置的值大于等于100时,取消进度条显示。<br/>浮在进度条上的文字通过value值进行变更。 |
Z
zengyawen 已提交
75 76

## 示例
Z
zengyawen 已提交
77

H
geshi  
HelloCrease 已提交
78
```html
Z
zengyawen 已提交
79 80 81 82 83 84 85 86 87 88 89
<!-- xxx.hml -->
<div class="div-button">
  <button class="first" type="capsule" value="Capsule button"></button>
  <button class="button circle" type="circle" icon="common/ic_add_default.png"></button>
  <button class="button text" type="text">Text button</button>
  <button class="button download" type="download" id="download-btn"
    onclick="progress">{{downloadText}}</button>
  <button class="last" type="capsule" waiting="true">Loading</button>
</div>
```

H
geshi  
HelloCrease 已提交
90
```css
Z
zengyawen 已提交
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
/* xxx.css */ 
.div-button {
  flex-direction: column;
  align-items: center;
}
.first{
  background-color: #F2F2F2;
  text-color: #0D81F2;
}
.button {
  margin-top: 15px;
}
.last{
  background-color: #F2F2F2;
  text-color: #969696;
  margin-top: 15px;
  width: 280px;
  height:72px;
}
.button:waiting {
  width: 280px;
}
.circle {
  background-color: #007dff;
  radius: 72px;
  icon-width: 72px;
  icon-height: 72px;
}
.text {
  text-color: red;
  font-size: 40px;
  font-weight: 900;
  font-family: sans-serif;
  font-style: normal;
}
.download {
  width: 280px;
  text-color: white;
  background-color: #007dff;
}
```

H
geshi  
HelloCrease 已提交
133 134
```js
// xxx.js
Z
zengyawen 已提交
135 136
export default {
  data: {
Z
update  
zengyawen 已提交
137
    count: 5,
Z
zengyawen 已提交
138 139 140
    downloadText: "Download"
  },
  progress(e) {
Z
update  
zengyawen 已提交
141 142 143 144
    this.count+= 10;
    this.downloadText = this.count+ "%";
    this.$element('download-btn').setProgress({ progress: this.count});
    if (this.count>= 100) {
Z
zengyawen 已提交
145 146 147 148 149 150
      this.downloadText = "Done";
    }
  }
}
```

Z
zengyawen 已提交
151
![zh-cn_image_0000001127125132](figures/zh-cn_image_0000001127125132.png)