富贵资源网 Design By www.hznty.com
一、普通背景模糊
代码:
<Style> html, body { width: 100%; height: 100%; } * { margin: 0; padding: 0; } /*背景模糊*/ .bg { width: 100%; height: 100%; position: relative; background: url("./bg.jpg") no-repeat fixed; background-size: cover; box-sizing: border-box; filter: blur(2px); z-index: 1; } .content { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 200px; height: 200px; text-align: center; z-index: 2; } </Style> </head> <body> <div class="bg"> <div class="content">背景模糊</div> </div> </body>
效果如下所示:
这样写会使整个div的后代模糊并且还会出现白边,导致页面非常不美观,要想解决这个问题,我们可以使用伪元素,因为伪元素的模糊度不会被父元素的子代继承。
代码:
<Style> html, body { width: 100%; height: 100%; } * { margin: 0; padding: 0; } /*背景模糊*/ .bg { width: 100%; height: 100%; position: relative; background: url("./bg.jpg") no-repeat fixed; background-size: cover; box-sizing: border-box; z-index: 1; } .bg:after { content: ""; width: 100%; height: 100%; position: absolute; left: 0; top: 0; /* 从父元素继承 background 属性的设置 */ background: inherit; filter: blur(2px); z-index: 2; } .content { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 200px; height: 200px; text-align: center; z-index: 3; } </Style> </head> <body> <div class="bg"> <div class="content">背景模糊</div> </div> </body>
效果如下所示:
二、背景局部模糊
上一个效果会了之后,局部模糊效果就比较简单了。
代码:
<Style> html, body { width: 100%; height: 100%; } * { margin: 0; padding: 0; } /*背景模糊*/ .bg { width: 100%; height: 100%; position: relative; background: url("./bg.jpg") no-repeat fixed; background-size: cover; box-sizing: border-box; z-index: 1; } .content { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 200px; height: 200px; background: inherit; z-index: 2; } .content:after { content: ""; width: 100%; height: 100%; position: absolute; left: 0; top: 0; background: inherit; filter: blur(15px); /*为了模糊更明显,调高模糊度*/ z-index: 3; } .content>div { width: 100%; height: 100%; text-align: center; line-height: 200px; position: absolute; left: 0; top: 0; z-index: 4; } </Style> </head> <body> <div class="bg"> <div class="content"> <div>背景局部模糊</div> </div> </div> </body>
效果如下图所示:
三、背景局部清晰
代码:
<Style> html, body { width: 100%; height: 100%; } * { margin: 0; padding: 0; } /*背景模糊*/ .bg { width: 100%; height: 100%; position: relative; background: url("./bg.jpg") no-repeat fixed; background-size: cover; box-sizing: border-box; z-index: 1; } .bg:after { content: ""; width: 100%; height: 100%; position: absolute; left: 0; top: 0; background: inherit; filter: blur(5px); z-index: 2; } .content { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 200px; line-height: 200px; text-align: center; background: inherit; z-index: 3; box-shadow: 0 0 10px 6px rgba(0, 0, 0, .5); } </Style> </head> <body> <div class="bg"> <div class="content"> <div>背景局部清晰</div> </div> </div> </body>
效果如下图所示:
富贵资源网 Design By www.hznty.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
富贵资源网 Design By www.hznty.com
暂无评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。