ui-js-components-text.md 6.6 KB
Newer Older
H
HelloCrease 已提交
1
# text开发指导
Z
zengyawen 已提交
2

H
HelloCrease 已提交
3
text是文本组件,用于呈现一段文本信息。具体用法请参考[text API](../reference/arkui-js/js-components-basic-text.md)
Z
zengyawen 已提交
4 5


H
HelloCrease 已提交
6
## 创建text组件
Z
zengyawen 已提交
7

H
HelloCrease 已提交
8
在pages/index目录下的hml文件中创建一个text组件。
Z
zengyawen 已提交
9

H
HelloCrease 已提交
10
```html
Z
zengyawen 已提交
11 12
<!-- xxx.hml -->
<div class="container" style="text-align: center;justify-content: center; align-items: center;">
H
HelloCrease 已提交
13
  <text>Hello World</text>
Z
zengyawen 已提交
14 15 16
</div>
```

H
HelloCrease 已提交
17
```css
Z
zengyawen 已提交
18 19
/* xxx.css */
.container {
Z
zengyawen 已提交
20 21
  width: 100%;
  height: 100%;
Z
zengyawen 已提交
22 23 24 25 26 27 28 29 30 31
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #F1F3F5;
}
```

![zh-cn_image_0000001211383427](figures/zh-cn_image_0000001211383427.png)


H
HelloCrease 已提交
32
## 设置text组件样式和属性
Z
zengyawen 已提交
33 34 35

- 添加文本样式

H
HelloCrease 已提交
36
  设置color、font-size、allow-scale、word-spacing、text-valign属性分别为文本添加颜色、大小、缩放、文本之间的间距和文本在垂直方向的对齐方式。 
Z
zengyawen 已提交
37

H
HelloCrease 已提交
38
  ```html
H
HelloCrease 已提交
39 40 41 42 43 44 45 46 47 48
  <!-- xxx.hml -->
  <div class="container" style="background-color:#F1F3F5;flex-direction: column;justify-content: center; align-items: center;">   
    <text style="color: blueviolet; font-size: 40px; allow-scale:true"> 
      This is a passage
    </text>
    <text style="color: blueviolet; font-size: 40px; margin-top: 20px; allow-scale:true;word-spacing: 20px;" >
      This is a passage
    </text>
  </div> 
  ```
W
wangshuainan1 已提交
49

H
HelloCrease 已提交
50
  ```css
H
HelloCrease 已提交
51 52 53 54 55 56 57 58 59 60
  /* xxx.css */
  .container {
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #F1F3F5;
  }
  ```
W
wangshuainan1 已提交
61

H
HelloCrease 已提交
62
  ![zh-cn_image_0000001220778205](figures/zh-cn_image_0000001220778205.png)
W
wangshuainan1 已提交
63 64


Z
zengyawen 已提交
65 66 67

- 添加划线

H
HelloCrease 已提交
68
  设置text-decoration和text-decoration-color属性为文本添加划线和划线颜色,text-decoration枚举值请参考    text自有样式。
W
wangshuainan1 已提交
69

H
HelloCrease 已提交
70
  ```html
H
HelloCrease 已提交
71 72 73 74 75 76 77 78 79 80 81
  <!-- xxx.hml -->
  <div class="container" style="background-color:#F1F3F5;">
    <text style="text-decoration:underline">
      This is a passage
    </text>
    <text style="text-decoration:line-through;text-decoration-color: red">
      This is a passage
     </text>
  </div>
  ```

H
HelloCrease 已提交
82
  ```css
H
HelloCrease 已提交
83 84 85 86 87 88 89 90 91 92 93 94
  /* xxx.css */
  .container {
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  text{
    font-size: 50px;
  }
  ```
W
wangshuainan1 已提交
95

W
wangshuainan1 已提交
96
  ![zh-cn_image_0000001220856725](figures/zh-cn_image_0000001220856725.png)
Z
zengyawen 已提交
97 98


W
wangshuainan1 已提交
99

H
HelloCrease 已提交
100
- 隐藏文本内容
W
wangshuainan1 已提交
101

H
HelloCrease 已提交
102
  当文本内容过多而显示不全时,添加text-overflow属性将隐藏内容以省略号的形式展现。
Z
zengyawen 已提交
103

H
HelloCrease 已提交
104
  ```html
H
HelloCrease 已提交
105 106 107 108 109 110 111 112
  <!-- xxx.hml -->
  <div class="container">
    <text class="text">
      This is a passage
    </text>
  </div>
  ```

H
HelloCrease 已提交
113
  ```css
H
HelloCrease 已提交
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
  /* xxx.css */
  .container {
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    background-color: #F1F3F5;
    justify-content: center; 
  }
  .text{
    width: 200px;
    max-lines: 1;
    text-overflow:ellipsis;
  }
  ```

  > **说明:**
  > - text-overflow样式需要与max-lines样式配套使用,设置了最大行数的情况下生效。
  > - max-lines属性设置文本最多可以展示的行数。


  ​    ![zh-cn_image_0000001163656706](figures/zh-cn_image_0000001163656706.png)
Z
zengyawen 已提交
136 137 138

- 设置文本折行

H
HelloCrease 已提交
139
  设置word-break属性对文本内容做断行处理,word-break枚举值请参考text自有样式。
Z
zengyawen 已提交
140

H
HelloCrease 已提交
141
  ```html
H
HelloCrease 已提交
142 143 144 145
  <!-- xxx.hml -->
  <div class="container">
    <div class="content">
      <text class="text1">
W
wangshuainan1 已提交
146 147
        Welcome to the world
      </text>
H
HelloCrease 已提交
148 149 150 151
        <text class="text2">
          Welcome to the world
        </text>
    </div>
W
wangshuainan1 已提交
152
  </div>
H
HelloCrease 已提交
153 154
  ```

H
HelloCrease 已提交
155
  ```css
H
HelloCrease 已提交
156 157
  /* xxx.css */
  .container {
W
wangshuainan 已提交
158 159
    width: 100%;
    height: 100%;
H
HelloCrease 已提交
160 161 162 163 164 165 166 167 168 169 170 171
    background-color: #F1F3F5;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .content{
    width: 50%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .text1{
W
wangshuainan 已提交
172
    width: 100%;
H
HelloCrease 已提交
173 174 175 176 177 178 179 180
    height: 200px;
    border:1px solid #1a1919;
    margin-bottom: 50px;
    text-align: center;
    word-break: break-word;
    font-size: 40px;
  }
  .text2{
W
wangshuainan 已提交
181
    width: 100%;
H
HelloCrease 已提交
182 183 184 185 186 187 188 189 190 191
    height: 200px;
    border:1px solid #0931e8;
    text-align: center;
    word-break: break-all;
    font-size: 40px;
  }
  ```


  ​    ![zh-cn_image_0000001209033195](figures/zh-cn_image_0000001209033195.png)
Z
zengyawen 已提交
192

H
HelloCrease 已提交
193
- text组件支持[Span](../reference/arkui-js/js-components-basic-span.md)子组件
Z
zengyawen 已提交
194

H
HelloCrease 已提交
195
  ```html
H
HelloCrease 已提交
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
  <!-- xxx.hml -->
  <div class="container" style="justify-content: center; align-items: center;flex-direction: column;background-color: #F1F3F5;  width: 100%;height: 100%;">
    <text style="font-size: 45px;">
      This is a passage
    </text>
    <text style="font-size: 45px;">
      <span style="color: aqua;">This </span><span style="color: #F1F3F5;">      1       
      </span>   
      <span style="color: blue;"> is a </span>    <span style="color: #F1F3F5;">      1    </span>    
      <span style="color: red;">  passage </span>
    </text>
  </div>
  ```

  ![zh-cn_image_0000001163372568](figures/zh-cn_image_0000001163372568.png)
H
HelloCrease 已提交
211
    > **说明:**
212
    > - 当使用Span子组件组成文本段落时,如果Span属性样式异常(例如:font-weight设置为1000),将导致文本段落显示异常。
H
HelloCrease 已提交
213
    >
H
HelloCrease 已提交
214
    > - 在使用Span子组件时,注意text组件内不能存在文本内容,如果存在文本内容也只会显示子组件Span里的内容。
H
HelloCrease 已提交
215

Z
zengyawen 已提交
216 217 218

## 场景示例

H
HelloCrease 已提交
219
text组件通过数据绑定展示文本内容,Span组件通过设置show属性来实现文本内容的隐藏和显示。
Z
zengyawen 已提交
220

H
HelloCrease 已提交
221
```html
Z
zengyawen 已提交
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
<!-- xxx.hml -->
<div class="container">
  <div style="align-items: center;justify-content: center;">
    <text class="title">
      {{ content }}
    </text>
    <switch checked="true" onchange="test"></switch>
  </div>
  <text class="span-container" style="color: #ff00ff;">
    <span show="{{isShow}}">  {{ content  }}  </span>
    <span style="color: white;">
        1
    </span>
    <span style="color: #f76160">Hide clip </span>
  </text>
</div>
```

H
HelloCrease 已提交
240
```css
Z
zengyawen 已提交
241 242
/* xxx.css */
.container {
W
wangshuainan1 已提交
243 244
  width: 100%;
  height: 100%;
Z
zengyawen 已提交
245 246 247 248 249 250 251 252 253 254 255 256 257
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: #F1F3F5;
}
.title {
  font-size: 26px;
  text-align:center;
  width: 200px;
  height: 200px;
}
```

H
HelloCrease 已提交
258
```js
Z
zengyawen 已提交
259 260 261 262 263 264 265 266 267 268 269 270 271 272
// xxx.js
export default {   
  data: {    
    isShow:true,    
    content: 'Hello World'
  },   
  onInit(){    },  
  test(e) {    
    this.isShow = e.checked  
  }
}
```

![zh-cn_image_0000001208636379](figures/zh-cn_image_0000001208636379.gif)
273 274 275 276


## 相关实例

H
HelloCrease 已提交
277
针对text开发,有以下相关实例可供参考:
278

M
mashitao2 已提交
279
- [`JsComponentCollection`:JS组件集合(JS)(API9)](https://gitee.com/openharmony/applications_app_samples/tree/OpenHarmony-3.2-Release/code/UI/JsComponentClollection/JsComponentCollection)