美文网首页
在App中使用带有Alpha通道的gif图片

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

作者: 赵羽珩 | 来源:发表于2019-07-31 18:00 被阅读0次

    在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里面的溶解


    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图片

          本文链接:https://www.haomeiwen.com/subject/ykatdctx.html