
回复
本文原创发布在华为开发者社区。
本示例实现如下个人页功能:
.onClick(() => {
if (this.collapseText === '...展开') {
this.collapseText = '...收起';
// 展开动画
animateTo({
duration: 150,
curve: curves.springMotion(0.5, 0.8),
}, () => {
this.maxLines = -1; // 使得设置的最大行属性无效
})
} else {
this.collapseText = '...展开';
// 收起动画
animateTo({
duration: 100,
curve: Curve.Friction,
}, () => {
this.maxLines = 5; // 只显示5行
})
}
})