中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何通过属性字符串实现文字阴影效果?
微信扫码分享
import { LengthMetrics } from '@kit.ArkUI'; @Entry @Component struct Index { mutableStyledString: MutableStyledString = new MutableStyledString("运动35分钟", [ { start: 0, length: 3, styledKey: StyledStringKey.TEXT_SHADOW, styledValue: new TextShadowStyle({ radius: 5, type: ShadowType.COLOR, color: Color.Red, offsetX: 10, offsetY: 10 }) } ]); controller: TextController = new TextController(); async onPageShow() { this.controller.setStyledString(this.mutableStyledString) } build() { Column() { // 显示属性字符串 Text(undefined, { controller: this.controller }) } .width('100%') } }