首页 > Web开发 > 详细

CSS 毛玻璃效果

时间:2019-10-10 20:24:27      阅读:88      评论:0      收藏:0      [点我收藏+]

效果图:

技术分享图片

 

<!DOCTYPE html>
<html lang="en" dir="ltr">
  <head>
    <meta charset="utf-8">
    <title></title>
    <style media="screen">
      html,body {
        height: 100%;
        margin: 0px;
      }
      body {
        background-image: url(http://b-ssl.duitang.com/uploads/blog/201406/28/20140628160330_r2RsB.jpeg);
        background-attachment: fixed;
        background-position: center;
        background-size: cover;
        position: relative;
      }
    // 核心css -- 依据父级容器的背景效果实现毛玻璃 .wrap { width:
100%; height: 200px; position: relative; background: inherit; box-shadow: 0px 0px 8px #333; border-radius: 5px; z-index: 0; }
// 模糊效果 .wrap::before { content:
‘‘; position: absolute; top:0; right: 0; bottom: 0; left: 0; background: inherit; background-attachment: fixed; filter: blur(5px); z-index: -1; }
// 增加透明度的白底 -- 非必要 .wrap::after { content:
‘‘; position: absolute; top:0; right: 0; bottom: 0; left: 0; background: rgba(255,255,255,.35); z-index: -1; } </style> </head> <body> <div class="wrap"> <span style="padding: 60px;display: inline-block;">玻璃模糊效果... ...</span> </div> </body> </html>

 

CSS 毛玻璃效果

原文:https://www.cnblogs.com/xtreme/p/11649946.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!