css 实现背景图和背景色正片叠底

要实现背景图和背景色的正片叠底效果,可以使用CSS的mix-blend-mode属性。mix-blend-mode属性定义了元素的内容与其背景层如何混合。当设置为multiply时,可以实现正片叠底效果

案例

css 复制代码
.style {
    background: url(https://xxx.png) no-repeat;
    background-size: 100% 100%;
    background-blend-mode: multiply;  /*正片叠底 */
}

混合模式

css 复制代码
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;      //亮度
mix-blend-mode: initial;         //初始
mix-blend-mode: inherit;         //继承
mix-blend-mode: unset;           //复原

图片底层混合

html 复制代码
<div>
    <img src="">
</div>
css 复制代码
div {
    background: #f6f6f6         //添加背景灰色
}
div img {
    mix-blend-mode: multiply;   //正片叠底
}

在这个示例中,我们创建了一个包含背景颜色和图片。通过将覆盖层的mix-blend-mode属性设置为multiply,实现了图片和背景色的正片叠底效果。

相关推荐
sunshine6418 分钟前
JS实现悬浮可拖拽vue组件封装
开发语言·前端·javascript
lichong95116 分钟前
《postman、apipost、smartApi 等使用与特点 3 天路线图(可打印 PDF+互动脑图)》
前端·测试工具·macos·pdf·postman·大前端·大前端++
4***721316 分钟前
【HTML+CSS】使用HTML与后端技术连接数据库
css·数据库·html
怪我冷i19 分钟前
es6与es5的模块区别
前端·ecmascript·es6·ai写作
一 乐20 分钟前
助农服务系统|基于SprinBoot+vue的助农服务系统(源码+数据库+文档)
前端·数据库·vue.js
by__csdn23 分钟前
Vue 2 与 Vue 3:深度解析与对比
前端·javascript·vue.js·typescript·vue·css3·html5
s***353026 分钟前
怎么下载安装yarn
android·前端·后端
q***649726 分钟前
Spring boot整合quartz方法
java·前端·spring boot
行走的陀螺仪27 分钟前
Vue3远程加载阿里巴巴字体图标实时更新方案
前端·icon·字体图标·阿里巴巴图标库
q***783728 分钟前
Spring Boot项目接收前端参数的11种方式
前端·spring boot·后端