ui-js-components-text.md 6.3 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 13 14 15 16 17 18 19


## 创建Text组件

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

```
<!-- xxx.hml -->
<div class="container" style="text-align: center;justify-content: center; align-items: center;">
  <text>        Hello World    </text>
</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 36
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #F1F3F5;
}
```

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


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

- 添加文本样式


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

W
wangshuainan1 已提交
39 40 41 42 43 44 45 46 47 48 49
```
<!-- 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 已提交
50

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


W
wangshuainan1 已提交
64
 ![zh-cn_image_0000001220778205](figures/zh-cn_image_0000001220778205.png)
Z
zengyawen 已提交
65 66 67 68


- 添加划线

W
wangshuainan1 已提交
69
​    设置text-decoration和text-decoration-colo属性为文本添加划线和划线颜色,text-decoration枚举值请参考    Text自有样式。
W
wangshuainan1 已提交
70 71


72 73 74 75 76 77 78
    <!-- 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
W
wangshuainan1 已提交
79
       </text>
80
    </div>
W
wangshuainan1 已提交
81 82 83 84 85 86 87 88 89 90 91 92 93
```
/* xxx.css */
.container {
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
text{
  font-size: 50px;
}
```
W
wangshuainan1 已提交
94

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


- 隐藏文本内容

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

W
wangshuainan1 已提交
102 103 104 105 106 107 108 109
```
<!-- xxx.hml -->
<div class="container">
  <text class="text">
    This is a passage
  </text>
</div>
```
W
wangshuainan1 已提交
110

111 112 113 114 115 116 117
    /* xxx.css */
    .container {
      width: 100%;
      height: 100%;
      flex-direction: column;
      align-items: center;
      background-color: #F1F3F5;
W
wangshuainan1 已提交
118
      justify-content: center; 
119 120 121 122 123 124
    }
    .text{
      width: 200px;
      max-lines: 1;
      text-overflow:ellipsis;
    }
W
wangshuainan1 已提交
125

W
wangshuainan1 已提交
126
 **说明:**
W
wangshuainan1 已提交
127

W
wangshuainan1 已提交
128 129
-  text-overflow样式需要与max-lines样式配套使用,设置了最大行数的情况下生效。
- max-lines属性设置文本最多可以展示的行数。
W
wangshuainan1 已提交
130 131


W
wangshuainan1 已提交
132
​    ![zh-cn_image_0000001163656706](figures/zh-cn_image_0000001163656706.png)
Z
zengyawen 已提交
133 134 135 136


- 设置文本折行

W
wangshuainan1 已提交
137
​      设置word-break属性对文本内容做断行处理,word-break枚举值请参考Text自有样式。
Z
zengyawen 已提交
138

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


154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
    /* xxx.css */
    .container {
      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{
      height: 200px;
      border:1px solid #1a1919;
      margin-bottom: 50px;
      text-align: center;
      word-break: break-word;
      font-size: 40px;
    }
    .text2{
      height: 200px;
      border:1px solid #0931e8;
      text-align: center;
      word-break: break-all;
      font-size: 40px;
    }
W
wangshuainan1 已提交
182 183


W
wangshuainan1 已提交
184
​    ![zh-cn_image_0000001209033195](figures/zh-cn_image_0000001209033195.png)
Z
zengyawen 已提交
185 186


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

W
wangshuainan1 已提交
189
  
190 191
    ```
    <!-- xxx.hml -->
W
wangshuainan1 已提交
192
    <div class="container" style="justify-content: center; align-items: center;flex-direction: column;background-color: #F1F3F5;  width: 100%;height: 100%;">
193 194 195 196
      <text style="font-size: 45px;">
        This is a passage
      </text>
      <text style="font-size: 45px;">
W
wangshuainan1 已提交
197 198 199 200
        <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>
201 202 203 204 205 206 207 208 209 210 211 212 213
      </text>
    </div>
    ```
    
    
    ![zh-cn_image_0000001163372568](figures/zh-cn_image_0000001163372568.png)
    
    
    > ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
    > - 当使用Span子组件组成文本段落时,如果Span属性样式异常(例如:font-weight设置为1000),将导致文本段落显示异常。
    > 
    > - 在使用Span子组件时,注意Text组件内不能存在文本内容,如果存在文本内容也只会显示子组件Span里的内容。
    
Z
zengyawen 已提交
214 215 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

## 场景示例

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 已提交
241 242
  width: 100%;
  height: 100%;
Z
zengyawen 已提交
243 244 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
  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)