이미지 필터
이미지 필터
CSS filter속성은 시각적 효과 (예 : 흐림 및 채도)를 요소에 추가합니다.
참고 : 필터 속성은 Internet Explorer, Edge 12 또는 Safari 5.1 이하에서는 지원되지 않습니다.
예
모든 이미지의 색상을 흑백으로 변경하십시오 (100 % 회색).
img {
-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
filter: grayscale(100%);
}
[전체소스]
<!DOCTYPE html>
<html>
<head>
<style>
img {
width: 33%;
height: auto;
float: left;
max-width: 235px;
}
.blur {-webkit-filter: blur(4px);filter: blur(4px);}
.brightness {-webkit-filter: brightness(250%);filter: brightness(250%);}
.contrast {-webkit-filter: contrast(180%);filter: contrast(180%);}
.grayscale {-webkit-filter: grayscale(100%);filter: grayscale(100%);}
.huerotate {-webkit-filter: hue-rotate(180deg);filter: hue-rotate(180deg);}
.invert {-webkit-filter: invert(100%);filter: invert(100%);}
.opacity {-webkit-filter: opacity(50%);filter: opacity(50%);}
.saturate {-webkit-filter: saturate(7); filter: saturate(7);}
.sepia {-webkit-filter: sepia(100%);filter: sepia(100%);}
.shadow {-webkit-filter: drop-shadow(8px 8px 10px green);filter: drop-shadow(8px 8px 10px green);}
</style>
</head>
<body>
<p><strong>Note:</strong> The filter property is not supported in Internet Explorer, Edge 12, or Safari 5.1 and earlier.</p>
<img src="pineapple.jpg" alt="Pineapple" width="300" height="300">
<img class="blur" src="pineapple.jpg" alt="Pineapple" width="300" height="300">
<img class="brightness" src="pineapple.jpg" alt="Pineapple" width="300" height="300">
<img class="contrast" src="pineapple.jpg" alt="Pineapple" width="300" height="300">
<img class="grayscale" src="pineapple.jpg" alt="Pineapple" width="300" height="300">
<img class="huerotate" src="pineapple.jpg" alt="Pineapple" width="300" height="300">
<img class="invert" src="pineapple.jpg" alt="Pineapple" width="300" height="300">
<img class="opacity" src="pineapple.jpg" alt="Pineapple" width="300" height="300">
<img class="saturate" src="pineapple.jpg" alt="Pineapple" width="300" height="300">
<img class="sepia" src="pineapple.jpg" alt="Pineapple" width="300" height="300">
<img class="shadow" src="pineapple.jpg" alt="Pineapple" width="300" height="300">
</body>
</html>


게시판 목록
퍼블리셔팁
질문은 상단의 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 1067 | CSS | 8년 전 | 1506 | ||
| 1066 | CSS | 8년 전 | 1874 | ||
| 1065 | CSS | 8년 전 | 1466 | ||
| 1064 | CSS | 8년 전 | 1605 | ||
| 1063 | CSS | 8년 전 | 1664 | ||
| 1062 | CSS | 8년 전 | 1680 | ||
| 1061 | CSS | 8년 전 | 1505 | ||
| 1060 | CSS | 8년 전 | 4160 | ||
| 1059 | CSS | 8년 전 | 2088 | ||
| 1058 | CSS | 8년 전 | 2508 | ||
| 1057 | CSS | 8년 전 | 2052 | ||
| 1056 | CSS | 8년 전 | 1977 | ||
| 1055 | CSS | 8년 전 | 1828 | ||
| 1054 | CSS | 8년 전 | 2100 | ||
| 1053 | CSS | 8년 전 | 1890 | ||
| 1052 | CSS | 8년 전 | 2017 | ||
| 1051 | CSS | 8년 전 | 2410 | ||
| 1050 | CSS | 8년 전 | 1737 | ||
| 1049 | CSS | 8년 전 | 2318 | ||
| 1048 | CSS | 8년 전 | 1765 | ||
| 1047 | CSS | 8년 전 | 1565 | ||
| 1046 | CSS | 8년 전 | 1244 | ||
| 1045 | CSS | 8년 전 | 1570 | ||
| 1044 | CSS | 8년 전 | 2327 | ||
| 1043 | CSS | 8년 전 | 2018 | ||
| 1042 | CSS | 8년 전 | 1777 | ||
| 1041 | CSS | 8년 전 | 1732 | ||
| 1040 | CSS | 8년 전 | 1492 | ||
| 1039 | CSS | 8년 전 | 1800 | ||
| 1038 | CSS | 8년 전 | 2238 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기