Home > database >  Backdrop-filter blur in combination with wavy border
Backdrop-filter blur in combination with wavy border

Time:09-06

I'm looking for the solution of combining the backdrop-filter:blur(XXpx) with a wavy border. See the image attached image.

I've already tried SVG waves and :before :after ellipses but this seems to me it is not impossible to pair it with "blur".

Does anyone have any hints?

enter image description here

This piece of code makes a straight line on top of "blur cover":

#css
.blur-filter-over {
    position: absolute; 
    height: calc(100vw*0.105);
    max-height: 230px;
    width: 100%;
    background: linear-gradient(180deg, rgba(70, 60, 92, 0.33) 0%, rgba(96, 96, 96, 0) 100%);
    backdrop-filter: blur(10px);
    border: unset;
    left: 0;
    bottom: 0;
}

#html
    <div  style="background-image: url({{ MEDIA_URL }});">
    <div >
    <div >
    <div >{{address}}</div>
    {{first_name}} {{last_name}}
    </div>
    </div>
    </div>

CodePudding user response:

From my previous answer you can do like below. I took one of the codes in that answer where I am using mask to create the wave.

.box {
  width:300px;
  height:250px;
  position:relative;
  background: url(https://picsum.photos/id/1069/400/600) center/cover;
}
.box:before{
  content:"";
  position:absolute;
  inset:0;
  -webkit-mask:
    radial-gradient(100% 80% at top   ,#0000 79.5%,#000 80%) left,
    radial-gradient(100% 80% at bottom,#000 79.5%,#0000 80%) right;
  -webkit-mask-size:50.1% 100%;
  -webkit-mask-repeat:no-repeat;
  backdrop-filter:blur(10px);
  background:#0005;
}
<div >

</div>

  • Related