이미지 필터
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>


게시글 목록
| 번호 | 제목 |
|---|---|
| 3381 | |
| 3380 | |
| 3379 | |
| 3378 | |
| 3377 | |
| 3376 | |
| 3375 | |
| 3374 | |
| 3373 | |
| 3372 | |
| 3371 | |
| 3370 | |
| 3369 | |
| 3368 | |
| 3367 | |
| 3366 |
기타
Vuejs 템플릿 약어
|
| 3365 | |
| 3364 |
기타
vuejs 템플릿 문법
|
| 3363 | |
| 3362 | |
| 3361 |
기타
Vue 속성과 메소드
|
| 3360 | |
| 3359 | |
| 3358 | |
| 3357 | |
| 3356 | |
| 3355 |
기타
vue.js 시작하기
|
| 3354 |
기타
Vue.js란
|
| 3351 | |
| 3350 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기