HarmonyOS里怎么实现类似CoordinateLayout的效果

视频详情页上滑时,视频组件变小,同时音画不中断。

HarmonyOS
2024-06-03 22:45:52
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
鸡翅可乐
scrollForward: NestedScrollMode.PARENT_FIRST, 
scrollBackward: NestedScrollMode.SELF_FIRST 
}) 
}.width('100%').height('100%').backgroundColor('#00CB87') 
}.tabBar("简介") 
 
TabContent() { 
  Column().width('100%').height('100%').backgroundColor('#007DFF') 
}.tabBar("评论") 
} 
.vertical(false) 
  .height(this.isPlay ? "80%" : "92%") // 后期视频隐藏的时候保留高度8% 
}.width("100%") 
} 
.backgroundColor('#DCDCDC') 
  .scrollBar(BarState.Off) 
  .width('100%') 
  .height('100%') 
} 
.width('100%').height('100%') 
} 
}
分享
微博
QQ
微信
回复
2024-06-04 21:58:04
相关问题
HarmonyOS 怎么实现类似SnackBar效果
363浏览 • 1回复 待解决
如何实现类似keyframes效果
2092浏览 • 1回复 待解决
HarmonyOS 类似翻页效果实现
607浏览 • 1回复 待解决
怎么实现类似oc代理模式
893浏览 • 1回复 待解决