在App中使用带有Alpha通道的gif图片

在App中使用带有Alpha通道的gif图片

使用方法

mix-blend-mode:screen;混合模式

.banner .wave {
    position:absolute;
    width:100%;
    bottom:0;
    left:0;
    z-index:99;
    mix-blend-mode:screen;
    height:100rpx;
}

也就是ps里面的溶解


在App中使用带有Alpha通道的gif图片_第1张图片
image.png

除此之外还有很多

mix-blend-mode: normal; //正常
mix-blend-mode: multiply; //正片叠底
mix-blend-mode: screen; //滤色
mix-blend-mode: overlay; //叠加
mix-blend-mode: darken; //变暗
mix-blend-mode: lighten; //变亮
mix-blend-mode: color-dodge; //颜色减淡
mix-blend-mode: color-burn; //颜色加深
mix-blend-mode: hard-light; //强光
mix-blend-mode: soft-light; //柔光
mix-blend-mode: difference; //差值
mix-blend-mode: exclusion; //排除
mix-blend-mode: hue; //色相
mix-blend-mode: saturation; //饱和度
mix-blend-mode: color; //颜色
mix-blend-mode: luminosity; //亮度

你可能感兴趣的:(在App中使用带有Alpha通道的gif图片)