Search
 
SCRIPT & CODE EXAMPLE
 

CSS

CSS backdrop-filter

div.transbox {
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
Comment

backdrop filter css



/* Keyword value */
backdrop-filter: none;

/* URL to SVG filter */
backdrop-filter: url(commonfilters.svg#filter);

/* <filter-function> values */
backdrop-filter: blur(2px);
backdrop-filter: brightness(60%);
backdrop-filter: contrast(40%);
backdrop-filter: drop-shadow(4px 4px 10px blue);
backdrop-filter: grayscale(30%);
backdrop-filter: hue-rotate(120deg);
backdrop-filter: invert(70%);
backdrop-filter: opacity(20%);
backdrop-filter: sepia(90%);
backdrop-filter: saturate(80%);

/* Multiple filters */
backdrop-filter: url(filters.svg#filter) blur(4px) saturate(150%);

/* Global values */
backdrop-filter: inherit;
backdrop-filter: initial;
backdrop-filter: unset;
Comment

how we use backdrop-filter css property

<div class="container">
  <div class="box">
    <p>backdrop-filter: blur(5px)</p>
  </div>
</div>
Comment

backdrop filter css

backdrop-filter might create a lag effect on your page while scrolling
Comment

PREVIOUS NEXT
Code Example
Css :: sass min max 
Css :: how to change what your cursor looks like 
Css :: fortnite pc size 2022 
Css :: animation-delay in css 
Css :: css block 
Css :: html css how to arrange images of different sizes 
Css :: freeze input text css 
Css :: fr meaning in css 
Css :: background image animation css codepen 
Css :: custom checkbox 
Css :: css-loader 
Css :: css attribute selectors 
Css :: button style css 
Css :: woocommerce cart css description 
Css :: css font family for all titles 
Css :: scss npm 
Css :: how to watch sass in multiple pathes 
Css :: hide scroll bar for a dive 
Css :: importer police de caractère ds css 
Css :: css background cover y axis 
Css :: to cut a box in cs 
Css :: change height primeng progress spinner 
Css :: pourquoi mon css ne fonctionne pas quand je recharge la page 
Css :: fullpage.js change the color of the anchor 
Css :: wow animation run in multiple times at once 
Css :: How to write something inside image 
Css :: can i do an onclick menu with css alone 
Css :: get diff to branch 
Css :: how To target a particular td in css 
Css :: css every other element than self 
ADD CONTENT
Topic
Content
Source link
Name
1+1 =