이미지 필터
이미지 필터
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에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 977 | CSS | 8년 전 | 1657 | ||
| 976 | CSS | 8년 전 | 2108 | ||
| 975 | CSS | 8년 전 | 1601 | ||
| 974 | CSS | 8년 전 | 5239 | ||
| 973 | CSS | 8년 전 | 3243 | ||
| 972 | CSS | 8년 전 | 3043 | ||
| 971 | CSS | 8년 전 | 2123 | ||
| 970 | HTML | 8년 전 | 3035 | ||
| 969 | HTML | 8년 전 | 3511 | ||
| 968 | CSS | 8년 전 | 2432 | ||
| 967 | CSS | 8년 전 | 1920 | ||
| 966 | CSS | 8년 전 | 1689 | ||
| 965 | CSS | 8년 전 | 2684 | ||
| 964 | CSS | 8년 전 | 2572 | ||
| 963 | CSS | 8년 전 | 3102 | ||
| 962 | CSS | 8년 전 | 1800 | ||
| 961 | CSS | 8년 전 | 1485 | ||
| 960 | CSS | 8년 전 | 2262 | ||
| 959 | CSS | 8년 전 | 1884 | ||
| 958 | CSS | 8년 전 | 2140 | ||
| 957 | CSS | 8년 전 | 2180 | ||
| 956 | CSS | 8년 전 | 2044 | ||
| 955 | CSS | 8년 전 | 2204 | ||
| 954 | CSS | 8년 전 | 2331 | ||
| 953 | CSS | 8년 전 | 2880 | ||
| 952 | CSS | 8년 전 | 2491 | ||
| 951 | CSS | 8년 전 | 2367 | ||
| 950 | CSS | 8년 전 | 1843 | ||
| 949 | CSS | 8년 전 | 1897 | ||
| 948 | CSS | 8년 전 | 2084 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기