이미지 필터
이미지 필터
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에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 857 | HTML | 8년 전 | 1387 | ||
| 856 | HTML | 8년 전 | 1845 | ||
| 855 | HTML | 8년 전 | 2079 | ||
| 854 | HTML | 8년 전 | 1495 | ||
| 853 | HTML | 8년 전 | 2191 | ||
| 852 | HTML | 8년 전 | 3271 | ||
| 851 | HTML | 8년 전 | 3243 | ||
| 850 | HTML | 8년 전 | 2084 | ||
| 849 | HTML | 8년 전 | 1666 | ||
| 848 | HTML | 8년 전 | 1821 | ||
| 847 | HTML | 8년 전 | 1710 | ||
| 846 | HTML | 8년 전 | 1910 | ||
| 845 | HTML | 8년 전 | 2035 | ||
| 844 | HTML | 8년 전 | 1976 | ||
| 843 | HTML | 8년 전 | 2193 | ||
| 842 | HTML | 8년 전 | 2040 | ||
| 841 | HTML | 8년 전 | 1964 | ||
| 840 | HTML | 8년 전 | 2325 | ||
| 839 | HTML | 8년 전 | 1906 | ||
| 838 | HTML | 8년 전 | 2175 | ||
| 837 | HTML | 8년 전 | 2012 | ||
| 836 | HTML | 8년 전 | 2031 | ||
| 835 | HTML | 8년 전 | 2194 | ||
| 834 | HTML | 8년 전 | 1537 | ||
| 833 | HTML | 8년 전 | 1894 | ||
| 832 | HTML | 8년 전 | 1379 | ||
| 831 | HTML | 8년 전 | 2436 | ||
| 830 | HTML | 8년 전 | 1650 | ||
| 829 | HTML | 8년 전 | 1255 | ||
| 828 | HTML | 8년 전 | 2476 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기