[html] 오버레이에 CSS 유리 / 흐림 효과를 적용하려면 어떻게해야합니까?

반투명 오버레이 div에 흐림 효과를 적용하는 데 문제가 있습니다. 나는 다음과 같이 div 뒤에있는 모든 것을 흐리게하고 싶습니다.

SFW 이미지

다음은 작동하지 않는 jsfiddle입니다 : http://jsfiddle.net/u2y2091z/

이 작업을 수행하는 방법에 대한 아이디어가 있습니까? 나는 이것을 가능한 한 복잡하지 않게 유지하고 크로스 브라우저로 만들고 싶습니다. 내가 사용하는 CSS는 다음과 같습니다.

#overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;

    background:black;
    background:rgba(0,0,0,0.8);

    filter:blur(4px);
    -o-filter:blur(4px);
    -ms-filter:blur(4px);
    -moz-filter:blur(4px);
    -webkit-filter:blur(4px);
}



답변

다음은 svg필터 를 사용하는 예입니다 .

아이디어는와 동일한 svg요소 를 사용 하고 필터를 적용하는 것입니다. 이 필터는 요소에 적용됩니다 . 돌출 된 효과를주기 위해 오버레이 하단에있는를 사용할 수 있습니다 .height#overlayfeGaussianblursvg imagebox-shadow

svg필터에 대한 브라우저 지원 .

Demo on Codepen

body {
  background: #222222;
}
#container {
  position: relative;
  width: 450px;
  margin: 0 auto;
}
img {
  height: 300px;
}
#overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
  color: rgba(130, 130, 130, 0.5);
  font-size: 50px;
  text-align: center;
  line-height: 100px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}
<div id="container">
  <img src="http://lorempixel.com/450/300/sports" />
  <div id="overlay">WET</div>
  <svg width="450" height="100" viewBox="0 0 450 100" style="position: absolute; top: 0;">
    <defs>
      <filter id="blur">
        <feGaussianBlur in="SourceGraphic" stdDeviation="3" />
      </filter>
    </defs>
    <image filter="url(#blur)" xlink:href="http://lorempixel.com/450/300/sports" x="0" y="0" height="300px" width="450px" />
  </svg>
</div>


답변

더 간단하고 최신 답변을 원하시면 :

backdrop-filter: blur(6px);

참고 브라우저 지원은 완벽하지 않지만 대부분의 경우 흐림이 아닌 필수가 될 것입니다.


답변

여기에있는 모든 사람들의 정보를 모아서 인터넷 검색을 할 수 있었고 Chrome과 Firefox에서 작동하는 다음을 생각해 냈습니다 : http://jsfiddle.net/xtbmpcsu/ . IE와 Opera에서이 작업을 계속 진행 중입니다.

핵심은 필터가 적용된 div 내부 에 콘텐츠를 넣는 것 입니다.

<div id="mask">
    <p>Lorem ipsum ...</p>
    <img src="http://www.byui.edu/images/agriculture-life-sciences/flower.jpg" />
</div>

그리고 CSS :

body {
    background: #300000;
    background: linear-gradient(45deg, #300000, #000000, #300000, #000000);
    color: white;
}
#mask {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    opacity: 0.5;
}
img {
    filter: blur(10px);
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -o-filter: blur(10px);
    -ms-filter: blur(10px);
    position: absolute;
    left: 100px;
    top: 100px;
    height: 300px;
    width: auto;
}

따라서 마스크에는 필터가 적용됩니다. 또한 <svg>값에 대한 태그가 있는 필터에 url ()을 사용하는 점에 유의 하십시오 . 그 아이디어는 http://codepen.io/AmeliaBR/pen/xGuBr 에서 나왔습니다 . CSS를 축소하는 경우 SVG 필터 마크 업의 공백을 “% 20″으로 바꿔야 할 수 있습니다.

이제 마스크 div 내부의 모든 것이 흐려집니다.


답변

오늘날 신뢰할 수있는 브라우저 간 접근 방식을 찾고 있다면 훌륭한 방법을 찾지 못할 것입니다. 가장 좋은 옵션은 두 개의 이미지를 만들고 (일부 환경에서는 자동화 될 수 있음) 하나가 다른 하나를 오버레이하도록 배열하는 것입니다. 아래에 간단한 예를 만들었습니다.

<figure class="js">
    <img src="http://i.imgur.com/3oenmve.png" />
    <img src="http://i.imgur.com/3oenmve.png?1" class="blur" />
</figure>
figure.js {
    position: relative;
    width: 250px; height: 250px;
}

figure.js .blur {
    top: 0; left: 0;
    position: absolute;
    clip: rect( 0, 250px, 125px, 0 );
}

효과적이기는하지만이 접근 방식이 반드시 이상적인 것은 아닙니다. 즉, 원하는 결과를 산출합니다 .

여기에 이미지 설명 입력


답변

가능한 해결책은 다음과 같습니다.

HTML

<img id="source" src="http://www.byui.edu/images/agriculture-life-sciences/flower.jpg" />

<div id="crop">
    <img id="overlay" src="http://www.byui.edu/images/agriculture-life-sciences/flower.jpg" />
</div>

CSS

#crop {
    overflow: hidden;

    position: absolute;
    left: 100px;
    top: 100px;

    width: 450px;
    height: 150px;
}

#overlay {
    -webkit-filter:blur(4px);
    filter:blur(4px);

    width: 450px;
}

#source {
    height: 300px;
    width: auto;
    position: absolute;
    left: 100px;
    top: 100px;
}

CSS를 단순화 할 수 있으며 ID를 제거해야한다는 것을 알고 있습니다. 여기서 아이디어는 div를 자르기 컨테이너로 사용한 다음 이미지 복제에 블러를 적용하는 것입니다. 깡깡이

Firefox에서이 작업을 수행하려면 SVG 해킹 을 사용해야 합니다.


답변

background: rgba(255,255,255,0.5);
backdrop-filter: blur(5px);

콘텐츠에 또 다른 흐림 배경을 추가하는 대신 background -filter를 사용할 수 있습니다 . FYI IE 11 및 Firefox는이를 지원하지 않을 수 있습니다. caniuse를 확인하십시오 .

데모:

header {
  position: fixed;
  width: 100%;
  padding: 10px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(5px);
}
body {
  margin: 0;
}
<header>
  Header
</header>
<div>
  <img src="https://dummyimage.com/600x400/000/fff" />
  <img src="https://dummyimage.com/600x400/000/fff" />
  <img src="https://dummyimage.com/600x400/000/fff" />
</div>


답변

#bg, #search-bg {
  background-image: url('https://images.pexels.com/photos/719609/pexels-photo-719609.jpeg?w=940&h=650&auto=compress&cs=tinysrgb');
  background-repeat: no-repeat;
  background-size: 1080px auto;
}

#bg {
  background-position: center top;
  padding: 70px 90px 120px 90px;
}

#search-container {
  position: relative;
}

#search-bg {
  /* Absolutely position it, but stretch it to all four corners, then put it just behind #search's z-index */
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 99;

  /* Pull the background 70px higher to the same place as #bg's */
  background-position: center -70px;

  -webkit-filter: blur(10px);
  filter: url('/media/blur.svg#blur');
  filter: blur(10px);
}

#search {
  /* Put this on top of the blurred layer */
  position: relative;
  z-index: 100;
  padding: 20px;
  background: rgb(34,34,34); /* for IE */
  background: rgba(34,34,34,0.75);
}

@media (max-width: 600px ) {
  #bg { padding: 10px; }
  #search-bg { background-position: center -10px; }
}

#search h2, #search h5, #search h5 a { text-align: center; color: #fefefe; font-weight: normal; }
#search h2 { margin-bottom: 50px }
#search h5 { margin-top: 70px }
<div id="bg">
  <div id="search-container">
    <div id="search-bg"></div>
    <div id="search">
      <h2>Awesome</h2>
      <h5><a href="#">How it works »</a></h5>
    </div>
  </div>
</div>