css實現毛玻璃效果


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;
  }

  

  


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM