ui-js-components-text.md 6.5 KB
Newer Older
Z
zengyawen 已提交
1 2
# Text

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


## 创建Text组件

在pages/index目录下的hml文件中创建一个Text组件。

```
<!-- 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 17 18 19
</div>
```

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

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


## 设置Text组件样式和属性

- 添加文本样式

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

H
HelloCrease 已提交
38 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 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-colo属性为文本添加划线和划线颜色,text-decoration枚举值请参考    Text自有样式。
W
wangshuainan1 已提交
69

H
HelloCrease 已提交
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
  ```
  <!-- 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>
  ```

  ```
  /* 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 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 133 134 135
  ```
  <!-- xxx.hml -->
  <div class="container">
    <text class="text">
      This is a passage
    </text>
  </div>
  ```

  ```
  /* 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 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 155 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

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

H
HelloCrease 已提交
195 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)
211 212
    > ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
    > - 当使用Span子组件组成文本段落时,如果Span属性样式异常(例如:font-weight设置为1000),将导致文本段落显示异常。
H
HelloCrease 已提交
213
    >
214
    > - 在使用Span子组件时,注意Text组件内不能存在文本内容,如果存在文本内容也只会显示子组件Span里的内容。
H
HelloCrease 已提交
215

Z
zengyawen 已提交
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242

## 场景示例

Text组件通过数据绑定展示文本内容,Span组件通过设置show属性来实现文本内容的隐藏和显示。

```
<!-- 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>
```

```
/* 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 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: #F1F3F5;
}
.title {
  font-size: 26px;
  text-align:center;
  width: 200px;
  height: 200px;
}
```

```
// 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 277 278


## 相关实例

针对Text开发,有以下相关实例可供参考:

279
- [`JsTextComponents`:基础组件(JS)(API8)](https://gitee.com/openharmony/app_samples/tree/master/UI/JsBasicComponents)