zoukankan      html  css  js  c++  java
  • css实现毛玻璃效果

    效果图如下:

     

    1.html代码

    <div class="mainHolder">
      <div class="textHolder">
        <p>this is FrostedGlass,this is FrostedGlass,this is FrostedGlass,this is FrostedGlass,this is FrostedGlass,this is FrostedGlass,this is FrostedGlass,this is FrostedGlass,this is FrostedGlass,this is FrostedGlass,this is FrostedGlass,this is FrostedGlass</p>
      </div>
    </div>

    2.css

    * {
       box-sizing: border-box;
     }
     .mainHolder {
       width: 100%;
       height: 100%;
       background-image: url(1.jpg);
       background-attachment: fixed;
       background-position: center;
       background-size: cover;
       position: relative;
     }
     .textHolder {
       width: 400px;
       height: 600px;
       position: absolute;
       left: 33%;
       top: 20%;
       background: inherit;
       overflow: hidden;
     }
     .textHolder::before {
       content: '';
       position: absolute;
       top:0;
       right: 0;
       bottom: 0;
       left: 0;
       background: inherit;
       background-attachment: fixed;
       filter: blur(4px);
     }
     .textHolder::after {
       content: "";
       position: absolute;
       top:0;
       right: 0;
       bottom: 0;
       left: 0;
       background: rgba(0, 0, 0, 0.25);
     }
     p {
       z-index: 1;
       color: white;
       position: relative;
       margin: 0;
     }

    参考---https://www.cnblogs.com/shuihanxiao/p/11777536.html

  • 相关阅读:
    HDFS高阶
    Flume学习笔记
    Yarn学习笔记
    二进制中1的个数
    二叉搜索树的后序遍历
    空指针
    web第十天总结
    绩效考核系统
    制作流程图,activity,好不容易找到的
    职业规划
  • 原文地址:https://www.cnblogs.com/pwindy/p/15649210.html
Copyright © 2011-2022 走看看