Notice
Recent Posts
Recent Comments
Link
ยซ   2026/05   ยป
์ผ ์›” ํ™” ์ˆ˜ ๋ชฉ ๊ธˆ ํ† 
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
31
Tags
more
Archives
Today
Total
๊ด€๋ฆฌ ๋ฉ”๋‰ด

็„ก์ œ

Functions์˜ filter์†์„ฑ๊ณผ ํ•จ์ˆ˜ ๋ณธ๋ฌธ

<style>

Functions์˜ filter์†์„ฑ๊ณผ ํ•จ์ˆ˜

yo-u-loo 2026. 3. 27. 09:55

 

๐ŸŸข filter ์†์„ฑ

์š”์†Œ์— ๊ทธ๋ž˜ํ”ฝ ํšจ๊ณผ(์‹œ๊ฐ์  ํšจ๊ณผ)๋ฅผ ์ ์šฉํ•˜๋Š” ํ•จ์ˆ˜.

 

โ—ผ ๋ฌธ๋ฒ•

.functions {
  filter: blur(5px);
}
  • filter: function(value);

 

โ—ผ ํ•จ์ˆ˜ ์ข…๋ฅ˜

๐Ÿ”น blur(): ํ๋ฆผ ์ •๋„.

๐Ÿ”น brightness(): ๋ฐ๊ธฐ ์ •๋„. (0%, 0: ๊ฒ€์€์ƒ‰ / 100%, 1: ๋ณ€ํ™”์—†์Œ / 200%, 2: ๋ฐ๊ธฐ 2๋ฐฐ ์ฆ๊ฐ€)

๐Ÿ”น contrast(): ๋Œ€๋น„ ์ •๋„. (0%: ํšŒ์ƒ‰ / 100%: ๋ณ€ํ™”์—†์Œ / 200%: ๋Œ€๋น„ 2๋ฐฐ ์ฆ๊ฐ€)

๐Ÿ”น drop-shadow(): ๊ทธ๋ฆผ์ž ์ •๋„. (๊ฐ€๋กœ ์˜คํ”„์…‹, ์„ธ๋กœ ์˜คํ”„์…‹, ํ๋ฆผ ์ •๋„, ๋ฒˆ์ง ์ •๋„, ๊ทธ๋ฆผ์ž ์ƒ‰)

๐Ÿ”น grayscale(): ํšŒ์ƒ‰์กฐ ๊ฐ•๋„. (0%: ์ปฌ๋Ÿฌ / 100%: ํ‘๋ฐฑ)

๐Ÿ”น invert(): ๋ฐ˜์ „ ์ •๋„.

๐Ÿ”น sepia(): ์„ธํ”ผ์•„ ๊ฐ•๋„. (๊ฐˆ์ƒ‰ํ†ค์˜ ๋นˆํ‹ฐ์ง€, ๊ณ ํ’์Šค๋Ÿฌ์šด ํšจ๊ณผ)

๐Ÿ”น opacity(): ๋ถˆํˆฌ๋ช…๋„.

๐Ÿ”น hue-rotate(): ๊ฐ๋„. (deg)

๐Ÿ”น saturate(): ์ฑ„๋„.

 

 

โ” box-shadow vs drop-shadow ์ฐจ์ด โ”

๊ตฌ๋ถ„ ํŠน์ง•
box-shadow ๋ฐ•์Šค ๊ธฐ์ค€
drop-shadow ์ด๋ฏธ์ง€ ๋ชจ์–‘ ๊ธฐ์ค€

 

 

๐Ÿ”จ ์ถ•์•ฝํ˜• ์†์„ฑ (Shorthand)

ํ•„ํ„ฐ ํ•จ์ˆ˜๋ฅผ ํ•œ ์ค„๋กœ ์ •์˜ํ•˜๋Š” ์†์„ฑ.

.functions {
  filter: blur(5px) brightness(120%) contrast(110%);
}
  • ํŠน์ง•: ์‹ค์ œ ์ด๋ฏธ์ง€๋ฅผ ์ˆ˜์ •ํ•˜์ง€ ์•Š๊ณ  ๋ Œ๋”๋ง ๊ฒฐ๊ณผ๋งŒ ๋ณ€๊ฒฝํ•œ๋‹ค.
  • ์ˆœ์„œ ์ค‘์š”: ์™ผ์ชฝ์—์„œ ์˜ค๋ฅธ์ชฝ ์ˆœ์„œ๋กœ ์ ์šฉ๋จ.

 


 

โš™๏ธ ์‹ค์ „ ์˜ˆ์ œ ์ฝ”๋“œ โš™๏ธ

<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>๋‹ค์–‘ํ•œ filter ํ•จ์ˆ˜</title>
<style>
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
  }
  .gallery img {
    width: 100%;
    height: auto;
    border-radius: 50%;
  }
  .title {
    text-align: center;
    font-weight: bold;
    margin-bottom:20px;
  }
  .image-container {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 10px;
    background: #f9f9f9;
  }

  /* Do it! filter ํ•จ์ˆ˜ ์‚ฌ์šฉํ•ด์„œ ์Šคํƒ€์ผ ์ง€์ •ํ•˜๊ธฐ */
  .blur { filter: blur(5px); }             /* ํ๋ฆฌ๊ฒŒ  */
  .brightness { filter: brightness(2); }   /* ๋ฐ๊ธฐ 2๋ฐฐ๋กœ */
  .contrast { filter: contrast(200%); }    /* ๋Œ€๋น„ 2๋ฐฐ๋กœ */
  .drop-shadow { filter: drop-shadow(16px 16px 10px black); }  /* ๊ทธ๋ฆผ์ž ์ถ”๊ฐ€ */
  .grayscale { filter: grayscale(100%); }  /* ํšŒ์ƒ‰์กฐ */
  .invert { filter: invert(100%); }        /* ์ „์ฒด ์ƒ‰์ƒ ๋ฐ˜์ „ */
  .sepia { filter: sepia(100%) }           /* ์„ธํ”ผ์•„ ํ†ค์œผ๋กœ ๋ณ€๊ฒฝ */
  .opacity { filter: opacity(50%); }       /* ๋ฐ˜ํˆฌ๋ช…ํ•˜๊ฒŒ */  
  .hue-rotate { filter: hue-rotate(90deg); }   /* ๋ชจ๋“  hue ๊ฐ’์„ 90๋„ ์ด๋™ */
  .saturate { filter: saturate(200%); }    /* ์ฑ„๋„ 2๋ฐฐ๋กœ */
</style>
</head>
<body>

<div class="origin">
  <img src="https://images.unsplash.com/photo-1596854407944-bf87f6fdd49e?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTh8fCVFQSVCMyVBMCVFQyU5NiU5MSVFQyU5RCVCNHxlbnwwfHwwfHx8MA%3D%3D" style="border-radius: 50%;">
</div>
<div class="gallery">
  <div class="image-container">
    <div class="title">filter:blur(5px)</div>
    <img src="https://images.unsplash.com/photo-1596854407944-bf87f6fdd49e?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTh8fCVFQSVCMyVBMCVFQyU5NiU5MSVFQyU5RCVCNHxlbnwwfHwwfHx8MA%3D%3D" class="blur">
  </div>
  <div class="image-container">
    <div class="title">filter:brightness(2)</div>
    <img src="https://images.unsplash.com/photo-1596854407944-bf87f6fdd49e?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTh8fCVFQSVCMyVBMCVFQyU5NiU5MSVFQyU5RCVCNHxlbnwwfHwwfHx8MA%3D%3D" class="brightness">
  </div>
  <div class="image-container">
    <div class="title">filter:contrast(200%)</div>
    <img src="https://images.unsplash.com/photo-1596854407944-bf87f6fdd49e?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTh8fCVFQSVCMyVBMCVFQyU5NiU5MSVFQyU5RCVCNHxlbnwwfHwwfHx8MA%3D%3D" class="contrast">
  </div>
  <div class="image-container">
    <div class="title">filter:drop-shadow(16px 16px 10px black)</div>
    <img src="https://images.unsplash.com/photo-1596854407944-bf87f6fdd49e?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTh8fCVFQSVCMyVBMCVFQyU5NiU5MSVFQyU5RCVCNHxlbnwwfHwwfHx8MA%3D%3D" class="drop-shadow">
  </div>
  <div class="image-container">
    <div class="title">filter:grayscale(100%)</div>
    <img src="https://images.unsplash.com/photo-1596854407944-bf87f6fdd49e?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTh8fCVFQSVCMyVBMCVFQyU5NiU5MSVFQyU5RCVCNHxlbnwwfHwwfHx8MA%3D%3D" class="grayscale">
  </div>
  <div class="image-container">
    <div class="title">filter:invert(100%)</div>
    <img src="https://images.unsplash.com/photo-1596854407944-bf87f6fdd49e?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTh8fCVFQSVCMyVBMCVFQyU5NiU5MSVFQyU5RCVCNHxlbnwwfHwwfHx8MA%3D%3D" class="invert">
  </div>
  <div class="image-container">
    <div class="title">filter:sepia(100%)</div>
    <img src="https://images.unsplash.com/photo-1596854407944-bf87f6fdd49e?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTh8fCVFQSVCMyVBMCVFQyU5NiU5MSVFQyU5RCVCNHxlbnwwfHwwfHx8MA%3D%3D" class="sepia">
  </div>
  <div class="image-container">
    <div class="title">filter:opacity(50%)</div>
    <img src="https://images.unsplash.com/photo-1596854407944-bf87f6fdd49e?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTh8fCVFQSVCMyVBMCVFQyU5NiU5MSVFQyU5RCVCNHxlbnwwfHwwfHx8MA%3D%3D" class="opacity">
  </div>
  <div class="image-container">
    <div class="title">filter:hue-rotate(90deg)</div>
    <img src="https://images.unsplash.com/photo-1596854407944-bf87f6fdd49e?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTh8fCVFQSVCMyVBMCVFQyU5NiU5MSVFQyU5RCVCNHxlbnwwfHwwfHx8MA%3D%3D" class="hue-rotate">
  </div>
  <div class="image-container">
    <div class="title">filter:saturate(200%)</div>
    <img src="https://images.unsplash.com/photo-1596854407944-bf87f6fdd49e?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTh8fCVFQSVCMyVBMCVFQyU5NiU5MSVFQyU5RCVCNHxlbnwwfHwwfHx8MA%3D%3D" class="saturate">
  </div>

  
</div>

</body>
</html>

 

'<style>' ์นดํ…Œ๊ณ ๋ฆฌ์˜ ๋‹ค๋ฅธ ๊ธ€

CSS์˜ Animation๊ณผ @keyframes  (0) 2026.03.27
transition ์†์„ฑ  (1) 2026.03.27
transform ์†์„ฑ๊ณผ functions (ํ•จ์ˆ˜)  (0) 2026.03.26
Pseudo-elements (์˜์‚ฌ ์š”์†Œ)  (0) 2026.03.26
Pseudo-class (์˜์‚ฌ ํด๋ž˜์Šค)  (0) 2026.03.26