美文网首页
磨砂玻璃实现

磨砂玻璃实现

作者: 六寸光阴丶 | 来源:发表于2019-09-30 19:06 被阅读0次

    效果

    毛玻璃特效

    代码

    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8">
      <title>毛玻璃效果</title>
    </head>
    
    <style>
        * {
          margin: 0;
          padding: 0;
        }
        
        html, body {
            height: 100%;
            width: 100%
        }
        
        main, .wall::before{
           background: url("http://fangyuanxiaozhan.com:10080/zhaoolee/images/raw/master/mk.jpg") 50% / cover no-repeat fixed;
        }
    
        main {
          height: 100%;
          width: 100%;
          display: flex;
          justify-content: center;
          align-items: center;
        }
    
        .wall {
          width: 380px;
          height: 200px;
          position: relative;
          overflow: hidden;
          z-index: 2;
        }
    
        .wall::before {
          content: '';
          position: absolute;
          top: 0; left: 0; bottom: 0; right: 0;
          filter: blur(30px);
          z-index: -1;
        }
        
    </style>
    
    <body>
      <main>
        <div class="wall">
          <p>
              打破次元壁?
          </p>
          <p>
            与其说想打破次元壁, 进入二次元,不如说你已经厌倦了三次元人或物的丑的一面,只想获得美的一面。
          </p>
        </div>
      </main>
    </body>
    </html>
    

    相关文章

      网友评论

          本文标题:磨砂玻璃实现

          本文链接:https://www.haomeiwen.com/subject/vbrluctx.html