Skip to content

Commit

Permalink
docs: 文字描边
Browse files Browse the repository at this point in the history
  • Loading branch information
yuanzm committed Mar 12, 2024
1 parent acf9b89 commit 3e91adc
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#### 2024.3.12
1. `U` 文字支持textStrokeWidth和textStrokeColor实现描边功能;
2. `U` 小游戏插件发布1.0.8版本;

#### 2023.1.03
1. `U` 小游戏插件发布1.0.7版本;
2. `F` 修复1.0.6版本Image的borderRadius失效问题
Expand Down
4 changes: 4 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#### 2024.3.12
1. `U` 文字支持textStrokeWidth和textStrokeColor实现描边功能;
2. `U` 小游戏插件发布1.0.8版本;

#### 2023.1.03
1. `U` 小游戏插件发布1.0.7版本;
2. `F` 修复1.0.6版本Image的borderRadius失效问题
Expand Down
2 changes: 2 additions & 0 deletions docs/components/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ Layout 通过 xml 组织布局,Layout 支持的标签列表如下。
| backgroundColor | string | | 背景的颜色,支持 6 位 16 进制、8 位 16 进制、rgb、rgba 四种格式的颜色 |
| textOverflow | ellipsis, clip | 默认为空,出于性能考虑,只有显式指定 textOverflow 属性的时候才会对文字进行截断处理 |
| letterSpacing | number | 默认值为 0,只对 bitmaptext 标签生效 |
| textStrokeWidth | number | 文字描边的宽度,默认不描边 |
| textStrokeColor | string | 描边的颜色,支持 6 位 16 进制、8 位 16 进制、rgb、rgba 四种格式的颜色, 如果指定了描边颜色但是没有指定描边宽度,描边宽度默认设置为1 |

### 容器

Expand Down
2 changes: 2 additions & 0 deletions src/components/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ const repaintAffectedStyles = [
'borderColor',
'opacity',
'transform',
'textStrokeColor',
'textStrokeWidth',
];

const allStyles = reflowAffectedStyles.concat(repaintAffectedStyles);
Expand Down

0 comments on commit 3e91adc

Please sign in to comment.