鸿蒙平台实现高斯模糊的渐变色

原图:

加上之后的效果:

代码:

scss 复制代码
@Builder
C2() {
  Stack({ alignContent: Alignment.Bottom }) {
    Image($r('app.media.landscape'))
      .width('100%')
      .height('100%')
      .objectFit(ImageFit.Cover)
      .borderWidth(2)
      .borderColor('#ff0000')
    Column() {
    }
    .width('100%')
    .height('100%')
    .borderWidth(2)
    .borderColor('#0000ff')
    .linearGradient({
      direction: GradientDirection.Bottom,
      colors: [
        ['#FFFFFFFF', 0.0],
        ['#FFFFFFFF', 0.6],
        ['#00FFFFFF', 1.0]
      ]
    })
    .blendMode(BlendMode.DST_IN)
  }
  .width('100%')
  .height('25%')
  .blendMode(BlendMode.SRC_OVER, BlendApplyType.OFFSCREEN)
}

End

相关推荐
花椒技术2 天前
HJPusher / HJPlayer SDK 实践:我们为什么把直播推播链路拆成一套可复用能力
设计模式·harmonyos·直播
一维Ace2 天前
HarmonyOS ArkTS 按钮组件全解:Button、Toggle 状态交互实战
harmonyos
anyup3 天前
来简单聊聊鸿蒙开发,万元奖金的事~
前端·华为·harmonyos
Georgewu3 天前
【无测试机别害怕】华为云鸿蒙云手机南:从零到联调全流程详解
harmonyos
Georgewu4 天前
【HarmonyOS 7】DevEco Code安装与使用
harmonyos
Georgewu4 天前
【HarmonyOS 7】鸿蒙应用开发如何屏蔽剪切板
harmonyos
谷子在生长5 天前
纯血鸿蒙自定义弹窗最佳实践:从「到处复制」到「一行调用」
前端·harmonyos
小魔女千千鱼5 天前
把 Go 塞进鸿蒙PC:windows上用 c-shared 跑 2048
harmonyos
TrisighT5 天前
Electron 跑在鸿蒙 PC 上,单窗口和多窗口内存差 800MB?我抓了 5 组数据
性能优化·electron·harmonyos