Apple Liquid Glass Navbar in Webflow (No Code)

Intermediate 19:54 webflowsvg-filterglassmorphismnavbarno-codeui

Recreate Apple's liquid glass navbar in Webflow with layered divs and a tiny SVG filter — no external libraries and no heavy code, just native elements.

Key takeaways

  • The whole effect is just layering plus one SVG filter — no external libraries and no heavy JavaScript, only native Webflow elements stacked on top of each other.
  • The glass look is built from three absolute layers inside the navbar: a backdrop-blur layer, a semi-transparent tint layer, and a shine layer with inner shadows for that reflected-light edge.
  • A plain CSS backdrop-blur only blurs what is behind it; the SVG displacement filter is what actually bends and distorts the content, and that is what sells the "liquid" part of liquid glass.
  • Set each layer's border-radius to `inherit` instead of retyping the value, so the layers always match the navbar's corners even if you change them later, and add overflow: hidden so nothing spills past the rounded edges.
  • Of the SVG filter parameters, scale has by far the biggest impact on how strong the distortion looks, followed by base frequency — dialing those two is how you go from a wild warp to Apple-subtle.

Video chapters

  1. 00:00 Intro
  2. 01:21 Preparing the navbar for the glass effect
  3. 04:14 Adding subtle shadows to create depth
  4. 05:37 Structuring the liquid glass layers
  5. 07:59 Adding the shine layer and fixing the corners
  6. 10:51 Applying the SVG filter
  7. 14:07 Final adjustments & filter tweaks
  8. 19:02 Outro

Recreate that gorgeous Apple liquid glass navbar right inside Webflow — the smooth, frosted, slightly liquid bar that distorts whatever scrolls beneath it. No external libraries, no heavy code: just native Webflow elements, a tiny SVG filter, and a bit of clever layering.

The trick is that “glass” isn’t one property you toggle on. It’s a few simple layers doing small jobs — a blur, a tint, a shine — stacked so they read as one polished surface. Once you see how the pieces fit, you can tune the whole thing to taste, from barely-there frost to full Apple-style refraction.

How it works

Start by prepping the navbar itself. Make it sticky with a top offset, push it above everything with a high z-index, and don’t let it span the full width — a calc(100% - 2rem) width with margin-left: auto and margin-right: auto centers it with a little breathing room on each side. A generous border-radius (think 50rem) gives you pill-rounded corners regardless of the navbar’s height. Two subtle box shadows on the navbar — a soft drop shadow and a wider, very faint one — make it feel like it’s hovering slightly above the page. You’ll barely notice them alone, but they quietly sell the depth once the glass goes on.

The glass itself is three absolutely-positioned layers dropped inside the navbar, each set to “full” so it covers the whole bar, and each placed before the navbar’s link wrapper so it never blocks your menu:

  • Glass effect layer — carries a small backdrop-filter: blur (around 3px) and, later, the SVG filter. This is the layer that bends the content behind it.
  • Glass tint layer — a flat background color at low opacity (white at ~25% to start; the video later swaps it to black at ~60% for a more solid, anchored look). This is the frosted wash.
  • Glass shine layer — two inset box shadows in white simulate the light catching the top-left edge and the opposite corner, giving that faint inner glow. Softening them from ~50% to ~30% opacity keeps the corners from looking harsh.

One gotcha: the rounded corners live on the navbar, and the new layers don’t inherit them by default. Instead of retyping 50rem three times, set each layer’s border-radius to inherit (as a custom value) and its overflow to hidden. Now every layer clips to the navbar’s shape automatically, even if you change the radius down the road.

The real magic is the SVG filter. A plain CSS blur only softens what’s behind the bar; an SVG displacement filter actually distorts it, so scrolling content warps in a fluid, organic way. You paste the filter into an embed element (give it a class, set display: none — it renders nothing, it’s just a definition to reference), then apply it to the glass effect layer with a custom CSS property: filter: url(#glass-distortion), using the filter’s ID. Inside the filter, three parameters do the tuning: scale on the displacement map controls the intensity (150 is strong; 60–80 is refined), base frequency on the turbulence sets how wavy the noise is (0.01 is default; ~0.015 is a touch more liquid), and standard deviation on the Gaussian blur spreads the distortion. Scale moves the needle most, base frequency second. A balanced, Apple-close combo is base frequency 0.015, standard deviation 3, and scale 60.

How to use it

  1. Clone the project. Grab the SVG glass effect cloneable — it ships with the finished navbar, the layer structure, and the exact SVG filter code (built on the Astral Fund Bank base). The filter markup lives inside the embed there, so you never have to write it from scratch.

  2. Prep the navbar. Set it to position: sticky, give it a top offset and a high z-index, set the width to calc(100% - 2rem) with margin-left/margin-right set to auto, and add a large border-radius for fully rounded corners.

  3. Add depth. On the navbar, add two outside box shadows — a soft one (roughly Y offset 6px, blur 6px) and a wider faint one (blur ~20px, black at ~10%). They’re subtle on purpose.

  4. Build the three layers. Inside the navbar, add three div blocks — glass effect, glass tint, glass shine — each position: absolute, set to full, and placed before the navbar link wrapper. Put a small backdrop blur on the effect layer, a low-opacity background on the tint layer, and two inset white box shadows on the shine layer.

  5. Fix the corners. On all three layers, set border-radius to inherit and overflow to hidden so they clip to the navbar’s rounded shape.

  6. Add and apply the SVG filter. Drop an embed element inside the navbar (before the link wrapper), paste in the filter code from the cloneable, give it a class, and set it to display: none. Then select the glass effect layer, add a custom CSS property filter with the value url(#glass-distortion) (match the filter’s ID), and scroll — the content beneath now distorts like real glass.

  7. Fine-tune. Open the embed and adjust the filter: lower scale (try 60–80) for a more delicate distortion, nudge base frequency toward 0.015 for more wave, and leave standard deviation around 3. Then polish the look — soften the shine shadows, bump link text to full opacity for legibility, and dial the tint darker if you want the bar to feel more solid.

Resources

Frequently asked questions

How do you make an Apple-style liquid glass navbar in Webflow without code?
Stack three absolutely-positioned layers inside your navbar — one with a small backdrop blur, one with a semi-transparent tint, and one with inner box shadows for the shine — then reference a single SVG filter that distorts the content behind it. Everything is native Webflow styling plus one embed; you never write JavaScript.
What is an SVG filter and why use one instead of a CSS blur?
An SVG filter is a visual effect you define once and reference by ID, and it can chain several operations with fine-grained parameters. A CSS backdrop blur only softens whatever sits behind the element, while an SVG displacement filter actually warps and distorts that content — which is what gives the glass its fluid, refractive feel.
How do I keep the rounded corners on the extra glass layers in Webflow?
Give each inner layer a border-radius of `inherit` (via a custom border-radius value) so it always matches the navbar's radius, and set its overflow to hidden. That clips every layer to the navbar's shape and keeps the corners clean even if you change the radius later.
Which SVG filter values control how strong the glass distortion looks?
The displacement map's scale controls the intensity of the distortion and has the biggest visual impact — lower it for a gentler effect. The turbulence base frequency sets how wavy the pattern is, and the Gaussian blur's standard deviation spreads it out. A balanced, Apple-like combination is base frequency around 0.015, standard deviation 3, and scale 60.
Does this liquid glass effect need a plugin or external library?
No. It is built entirely from Webflow's own layout and style controls plus a small SVG filter pasted into an embed element — no third-party libraries, no plugins, and nothing heavy to load.

← Back to the course

Also part of these courses