Notice: Trying to access array offset on value of type bool in /www/wwwroot/weimahe.com/wp-content/advanced-cache.php on line 472

Notice: Trying to access array offset on value of type bool in /www/wwwroot/weimahe.com/wp-content/advanced-cache.php on line 472
CSS实现背景图片透明和文字不透明效果 - 微码盒
!
也想出现在这里? 联系我们
广告位

CSS实现背景图片透明和文字不透明效果

项目中经常会用到背景图上放一些文字介绍,这里介绍两种技术来实现背景图片透明,文字不透明效果,记录一下,方便日后学习。

1.毛玻璃效果:

背景图 + 伪类 + flite:blur(3px)

CSS 代码

  1. .demo1{
  2. width: 500px;
  3. height: 300px;
  4. line-height: 50px;
  5. text-align: center;
  6. }
  7. .demo1:before{
  8. background: url(http://csssecrets.io/images/tiger.jpg) no-repeat;
  9. background-size: cover;
  10. width: 500px;
  11. height: 300px;
  12. content: "";
  13. position: absolute;
  14. top: 0;
  15. left: 0;
  16. z-index: -1;/*-1 可以当背景*/
  17. -webkit-filter: blur(3px);
  18. filter: blur(3px);
  19. }

HTML 代码

  1. <div class="demo1">背景图半透明,文字不透明<br />方法:背景图+ filter:blur</div>

2.半透明效果:

背景图 + 定位 + background:rgba(255,255,255,0.3)

CSS 代码

  1. .demo2-bg{
  2. background: url(http://csssecrets.io/images/tiger.jpg) no-repeat;
  3. background-size: cover;
  4. width: 500px;
  5. height: 300px;
  6. position: relative;
  7. }
  8. .demo2{
  9. position: absolute;
  10. left: 0;
  11. right: 0;
  12. top: 0;
  13. bottom: 0;
  14. width: 500px;
  15. height: 300px;
  16. line-height: 50px;
  17. text-align: center;
  18. background:rgba(255,255,255,0.3);
  19. }

HTML 代码

  1. <div class="demo2-bg">
  2. <div class="demo2">背景图半透明,文字不透明<br />方法:定位+ background:rgba(255,255,255,0.3)</div>
  3. </div>

实例经验

  1. body:before {
  2. content: " ";
  3. position: fixed;
  4. z-index: -1;
  5. top: 0;
  6. right: 0;
  7. bottom: 0;
  8. left: 0; background: url(http://xxx.png) center 0 no-repeat;
  9. background-size: cover;
  10. opacity: .3; }

以上所述是小编给大家介绍的 CSS 实现背景图片透明而文字不透明效果的两种方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。

给TA打赏
共{{data.count}}人
人已打赏
前端学习

彩色文字打印特效

2024-11-4 14:09:15

前端学习

判断访问用户终端设备类型

2024-11-6 10:46:59

下载说明

  • 1、微码盒所提供的压缩包若无特别说明,解压密码均为weimahe.com
  • 2、下载后文件若为压缩包格式,请安装7Z软件或者其它压缩软件进行解压;
  • 3、文件比较大的时候,建议使用下载工具进行下载,浏览器下载有时候会自动中断,导致下载错误;
  • 4、资源可能会由于内容问题被和谐,导致下载链接不可用,遇到此问题,请到文章页面进行反馈,以便微码盒及时进行更新;
  • 5、其他下载问题请自行搜索教程,这里不一一讲解。

站长声明

本站大部分下载资源收集于网络,只做学习和交流使用,版权归原作者所有;若为付费资源,请在下载后24小时之内自觉删除;若作商业用途,请到原网站购买;由于未及时购买和付费发生的侵权行为,与本站无关。本站发布的内容若侵犯到您的权益,请联系本站删除,我们将及时处理!
0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索