Apple downloaded a minecraft shader and call it “liquid glass”

12 Comments

  1. We’re getting recycled features from 2007.

  2. AnnoyingInternetTrol

    I heard liquid glass and I’m thinking its a new type of glass for their screen. I look it up, its just a fucking theme for the homepage.

  3. Also, it’s the bad version of vista’s translucency implementation

  4. Vast-Finger-7915

    if you cared to look it up, you’d see that it’s definitely NOT just a blur

  5. iPantsMan

    This is a bit more complicated, here is the approximate code, but without the light refraction effect:

    https://preview.redd.it/5tajpqlhpf7f1.png?width=1627&format=png&auto=webp&s=7a78e6c28b86adaa0ea76b14a0e9522cca1769b8

    <!DOCTYPE html>
    <html lang=”en”>
    <head>
    <meta charset=”UTF-8″>
    <title>Liquid Glass</title>
    <style>
    body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: url(‘https://images.unsplash.com/photo-1519125323398-675f0ddb6308’) no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
    }

    .glass {
    width: 300px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    }

    .glass::before {
    content: ”;
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent 60%);
    transform: rotate(30deg);
    pointer-events: none;
    }
    </style>
    </head>
    <body>
    <div class=”glass”>
    </div>
    </body>
    </html>

  6. SirPomf

    Say goodbye to ⅓ if your battery life

  7. JgdPz_plojack

    Sounds like Jeremy Clarkson quote title

    ![gif](giphy|ylePMIlh8YiV4yXelI|downsized)

Write A Comment