- CSS 教程
- CSS - 教程
- CSS - 简介
- CSS - 语法
- CSS - 选择器
- CSS - 包含
- CSS - 度量单位
- CSS - 颜色
- CSS - 背景
- CSS - 字体
- CSS - 文本
- CSS - 图像
- CSS - 链接
- CSS - 表格
- CSS - 边框
- CSS - border-block 属性
- CSS - 边框内联
- CSS - 边距
- CSS - 列表
- CSS - Padding 属性
- CSS - 光标
- CSS - 轮廓
- CSS - 维度
- CSS - 滚动条
- CSS - 内联块
- CSS - 下拉列表
- CSS - visibility 属性
- CSS - Overflow 属性
- CSS - 清除修复
- CSS - float(浮点)
- CSS - 箭头
- CSS - resize 属性
- CSS - quotes 属性
- CSS - order 属性
- CSS - Position 属性
- CSS - hypens 属性
- CSS - :hover(悬停)
- CSS - display(显示)
- CSS - focus 属性
- CSS - zoom(缩放)
- CSS - translate 属性
- CSS - Height 属性
- CSS - hyphenate-character 属性
- CSS - Width 属性
- CSS - opacity 属性
- CSS - z-index 属性
- CSS - bottom 属性
- CSS - 导航栏
- CSS - 覆盖
- CSS - 表单
- CSS - 对齐
- CSS - 图标
- CSS - 图片库
- CSS - 注释
- CSS - 加载器
- CSS - Atrribute 选择器属性
- CSS - 运算器
- CSS - root
- CSS - 盒子模型
- CSS - 计数器
- CSS - Clip (Obsolete) 属性
- CSS - writing-mode 属性
- CSS - Unicode-bidi 属性
- CSS - min-content 属性
- CSS - 全部
- CSS - inset 属性
- CSS - isolation 属性
- CSS - overscroll-behavior 属性
- CSS - justify-items 属性
- CSS - justify-self 属性
- CSS - tab-size 属性
- CSS - pointer-event 属性
- CSS - place-content 属性
- CSS - place-items 属性
- CSS - place-self 属性
- CSS - max-block-size 属性
- CSS - min-block-size 属性
- CSS - mix-blend-mode 属性
- CSS - max-inline-size 属性
- CSS - min-inline-size 属性
- CSS - offset 属性
- CSS - accent-color 属性
- CSS - user-select 属性
- CSS 高级
- CSS - grid 属性
- CSS - Grid 布局
- CSS - flexbox
- CSS - vertical-align 属性
- css - positioning
- css - layers
- css - pseudo_classes
- CSS - 伪元素
- CSS - @ 规则
- CSS 滤镜 - text-effect 属性
- CSS 分页媒体
- CSS 打印
- CSS - 布局
- CSS - 验证
- CSS - 图像精灵
- CSS - !important
- CSS - 数据类型
- CSS3 教程
- CSS - 圆角
- CSS - 边框图像
- CSS - 多种背景
- CSS - 渐变
- CSS - box-shadow 属性
- CSS - box-decoration-break 属性
- CSS - caret-color 属性
- CSS - text-shadow 属性
- CSS - 2D 转换
- CSS - 3D 变换
- CSS - transition 属性
- CSS - 动画
- CSS - 多列布局
- CSS - 盒子大小调整
- CSS - 工具提示
- CSS - buttons
- CSS - 分页
- CSS - 变量
- CSS - 媒体查询
- CSS - 值函数
- CSS - 数学函数
- CSS - Mask 属性
- CSS - shape-outside 属性
- CSS - 样式图像
- CSS - 特异性
- CSS - 自定义属性
- CSS 响应式
- CSS - 响应式网页设计 (RWD)
- CSS - 响应式设计视口
- CSS - 响应式网格视图
- CSS - 响应式媒体查询
- CSS - 响应式图像
- CSS - 响应式视频
- CSS - 响应式框架
- CSS 引用
- CSS - 所有属性列表
- CSS - 颜色引用
- CSS - 浏览器支持参考
- CSS - 网页字体
- CSS 工具
- CSS - PX 到 EM 的转换
CSS - backdrop-filter 属性
CSS backgrounddrop-filter 属性用于向元素后面的区域添加图形效果,即添加到元素的背景中。由于此属性添加了模糊等效果,因此在元素后面,元素需要完全或部分透明才能使效果可见。
语法
backdrop-filter: none | filter | initial | inherit;
属性值
值 | 描述 |
---|---|
none | N不会将滤镜应用于元素的背面。默认值。 |
filter | 以空格分隔的滤镜函数列表,例如 blur()、brightness()、contrast()、drop-shadow()、grayscale()、hue-rotate()、invert()、opacity()、sepia()、saturate() 或将应用于背景的 SVG 滤镜的 url |
initial | 会将属性设置为其初始值。 |
inherit | 将继承父元素的属性。 |
CSS 背景滤镜属性示例
以下是具有不同值的背景过滤器属性的示例。
无滤镜背景
为了避免将滤镜应用于元素的背景,我们使用 none 值。以下示例显示了这一点。
<!DOCTYPE html>
<html>
<head>
<style>
.background-img {
background: url(/css/images/white-flower.jpg) no-repeat center;
background-size: cover;
align-items: center;
display: flex;
justify-content: center;
padding: 20%;
}
.nofilter-box {
-webkit-backdrop-filter: none;
backdrop-filter: none;
color: white;
}
</style>
</head>
<body>
<h1>CSS backdrop-filter property</h1>
<div class="background-img">
<div class="nofilter-box">
<p>backdrop-filter: none</p>
</div>
</div>
</body>
</html>
模糊的背景
为了将模糊应用于元素的背景,我们使用模糊滤镜。以下示例显示了这一点。使用了 15px 的模糊。
<!DOCTYPE html>
<html>
<head>
<style>
.background-img {
background: url(/css/images/white-flower.jpg) no-repeat center;
background-size: cover;
align-items: center;
display: flex;
justify-content: center;
padding: 20%;
}
.blur-box {
-webkit-backdrop-filter: blur(15px);
backdrop-filter: blur(15px);
color: white;
}
</style>
</head>
<body>
<h1> CSS backdrop-filter property</h1>
<div class="background-img">
<div class="blur-box">
<p>backdrop-filter: blur(15px)</p>
</div>
</div>
</body>
</html>
背景亮度
要调整元素背景的亮度,请使用亮度拟合器。以下示例显示了这一点。已使用50%的亮度。
<!DOCTYPE html>
<html>
<head>
<style>
.background-img {
background: url(/css/images/white-flower.jpg) no-repeat center;
background-size: cover;
align-items: center;
display: flex;
justify-content: center;
padding: 20%;
}
.bright-box {
-webkit-backdrop-filter: brightness(50%);
backdrop-filter: brightness(50%);
color: white;
}
</style>
</head>
<body>
<h1> CSS backdrop-filter property</h1>
<div class="background-img">
<div class="bright-box">
<p>backdrop-filter: brightness(50%)</p>
</div>
</div>
</body>
</html>
背景的黑暗
为了调整元素背景的对比度,我们使用对比度滤镜。以下示例显示了这一点。已使用 10% 的对比度。
<!DOCTYPE html>
<html>
<head>
<style>
.background-img {
background: url(/css/images/white-flower.jpg) no-repeat center;
background-size: cover;
align-items: center;
display: flex;
justify-content: center;
padding: 20%;
}
.contrast-box {
-webkit-backdrop-filter: contrast(10%);
backdrop-filter: contrast(10%);
color: white;
}
</style>
</head>
<body>
<h1> CSS backdrop-filter property</h1>
<div class="background-img">
<div class="contrast-box">
<p>backdrop-filter: contrast(10%)</p>
</div>
</div>
</body>
</html>
灰度背景
为了在元素的背景中添加灰度效果,我们使用灰度滤镜。以下示例显示了这一点。已使用 70% 的灰度值。
<!DOCTYPE html>
<html>
<head>
<style>
.background-img {
background: url(/css/images/white-flower.jpg) no-repeat center;
background-size: cover;
align-items: center;
display: flex;
justify-content: center;
padding: 20%;
}
.gray-box {
-webkit-backdrop-filter: grayscale(70%);
backdrop-filter: grayscale(70%);
color: white;
}
</style>
</head>
<body>
<h1> CSS backdrop-filter property</h1>
<div class="background-img">
<div class="gray-box">
<p>backdrop-filter: grayscale(70%)</p>
</div>
</div>
</body>
</html>
背景的旋转颜色
为了向元素的背景添加色相旋转效果,我们使用了色相旋转滤镜。它通过围绕色轮旋转背景来改变背景的颜色。指定的角度决定了旋转方向。以下示例显示了这一点。已使用 120 度角。
<!DOCTYPE html>
<html>
<head>
<style>
.background-img {
background: url(/css/images/white-flower.jpg) no-repeat center;
background-size: cover;
align-items: center;
display: flex;
justify-content: center;
padding: 20%;
}
.hue-box {
-webkit-backdrop-filter: hue-rotate(120deg);
backdrop-filter: hue-rotate(120deg);
color: white;
}
</style>
</head>
<body>
<h1>CSS backdrop-filter property</h1>
<div class="background-img">
<div class="hue-box">
<p>backdrop-filter: hue-rotate(120deg)</p>
</div>
</div>
</body>
</html>
反转背景的颜色
为了将反转效果添加到元素的背景中,我们使用反转滤镜。它颠倒了背景的颜色并产生了负面影响。以下示例显示了这一点。反转滤波器的值为 70%。
<!DOCTYPE html>
<html>
<head>
<style>
.background-img {
background: url(/css/images/white-flower.jpg) no-repeat center;
background-size: cover;
align-items: center;
display: flex;
justify-content: center;
padding: 20%;
}
.invert-box {
background-color: rgba(255, 255, 255, 0.4);
-webkit-backdrop-filter: invert(70%);
backdrop-filter: invert(70%);
color: white;
}
</style>
</head>
<body>
<h1>CSS backdrop-filter property</h1>
<div class="background-img">
<div class="invert-box">
<p>backdrop-filter: invert(70%)</p>
</div>
</div>
</body>
</html>
背景的透明度
为了调整元素背景的透明度效果,我们使用了不透明度滤镜。以下示例显示了这一点。使用了 10% 的不透明度。
<!DOCTYPE html>
<html>
<head>
<style>
.background-img {
background: url(/css/images/white-flower.jpg) no-repeat center;
background-size: cover;
align-items: center;
display: flex;
justify-content: center;
padding: 20%;
}
.opacity-box {
-webkit-backdrop-filter: opacity(10%);
backdrop-filter: opacity(10%);
color: white;
}
</style>
</head>
<body>
<h1>CSS backdrop-filter property</h1>
<div class="background-img">
<div class="opacity-box">
<p>backdrop-filter: opacity(10%)</p>
</div>
</div>
</body>
</html>
温暖的背景
为了添加棕褐色效果,模拟温暖的褐色色调到背景中,产生老照片效果,在元素的背景中,我们使用棕褐色滤镜。以下示例显示了这一点。棕褐色滤镜的值为 90%。
<!DOCTYPE html>
<html>
<head>
<style>
.background-img {
background: url(/css/images/white-flower.jpg) no-repeat center;
background-size: cover;
align-items: center;
display: flex;
justify-content: center;
padding: 20%;
}
.sepia-box {
-webkit-backdrop-filter: sepia(90%);
backdrop-filter: sepia(90%);
color: white;
}
</style>
</head>
<body>
<h1> CSS backdrop-filter property</h1>
<div class="background-img">
<div class="sepia-box">
<p>backdrop-filter: sepia(90%)</p>
</div>
</div>
</body>
</html>
背景的色彩强度
为了添加饱和度效果,该效果将颜色强度调整到元素的背景中,我们使用饱和度滤镜。以下示例显示了这一点。已使用 180% 的饱和度。
<!DOCTYPE html>
<html>
<head>
<style>
.background-img {
background: url(/css/images/white-flower.jpg) no-repeat center;
background-size: cover;
align-items: center;
display: flex;
justify-content: center;
padding: 20%;
}
.saturate-box {
-webkit-backdrop-filter: saturate(180%);
backdrop-filter: saturate(180%);
color: white;
}
</style>
</head>
<body>
<h1> CSS backdrop-filter property</h1>
<div class="background-img">
<div class="saturate-box">
<p>backdrop-filter: saturate(180%)</p>
</div>
</div>
</body>
</html>
对背景的多重滤镜效果
我们也可以同时使用多个过滤器。在以下示例中,使用了模糊和灰度滤镜。使用了 2px 的模糊和 70% 的灰度滤镜值。
<!DOCTYPE html>
<html>
<head>
<style>
.background-img {
background: url(/css/images/white-flower.jpg) no-repeat center;
background-size: cover;
align-items: center;
display: flex;
justify-content: center;
padding: 20%;
}
.multi-box {
-webkit-backdrop-filter: blur(2px) grayscale(70%);
backdrop-filter: blur(2px) grayscale(70%);
color: white;
}
</style>
</head>
<body>
<h1> CSS backdrop-filter property</h1>
<div class="background-img">
<div class="multi-box">
<p>backdrop-filter: blur(2px) grayscale(70%)</p>
</div>
</div>
</body>
</html>
支持的浏览器
属性 | |||||
---|---|---|---|---|---|
backdrop-filter | 76.0 | 17.0 | 70.0 | 9.0 | 63.0 |