HTML – 我可以只对图像部分应用CSS(3)过滤器吗?

HTML – 我可以只对图像部分应用CSS(3)过滤器吗?,第1张

概述我有一个全屏背景图像 .bg { left: 0; min-height: 100%; min-width: 100%; position: fixed; top: 0; z-index: -1; } 并且想要应用CSS3过滤器,我个人想使用模糊效果,在与我的身体相同的位置 .container { margin: 0 auto; 我有一个全屏背景图像
.bg {     left: 0;    min-height: 100%;     min-wIDth: 100%;     position: fixed;     top: 0;     z-index: -1; }

并且想要应用CSS3过滤器,我个人想使用模糊效果,在与我的身体相同的位置

.container {    margin: 0 auto;     wIDth: 1000px;}

这是一个例子:

screenshot http://imageshack.us/a/img443/4976/j7qj.jpg

我想在模糊的容器上写文字.

解决方法 http://jsfiddle.net/QvSng/6/

CSS

body {    position: absolute;    top: 0;    bottom: 0;    left: 0;    right: 0;    background: url(http://lorempixel.com/420/255) no-repeat center center fixed;    background-size: cover;}body:before {    left: 0;    right: 0;    margin-left:auto;    margin-right:auto;    content: "";    position: absolute;    height: 100%;    wIDth: 500px;    background: url(http://lorempixel.com/420/255)  no-repeat center center fixed;    background-size: cover;    z-index: -1;    filter: blur(5px);    -webkit-filter: blur(5px);}div {    height: 100%;    wIDth: 450px;    margin: 0 auto;}
总结

以上是内存溢出为你收集整理的HTML – 我可以只对图像部分应用CSS(3)过滤器吗?全部内容,希望文章能够帮你解决HTML – 我可以只对图像部分应用CSS(3)过滤器吗?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1144548.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存