Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS3를 사용하여 이미지 대비 조정

<시간/>

CSS에서 이미지 대비를 설정하려면 필터 대비(%)를 사용하십시오. 값 0은 이미지를 검은색으로 만들고 100%는 원본 이미지 및 기본값을 위한 것임을 기억하십시오. 나머지는 원하는 값을 설정할 수 있지만 값이 100%를 초과하면 이미지가 더 대조적으로 만들어집니다.

예시

이제 CSS3로 이미지 대비를 조정하는 예를 살펴보겠습니다 -

<!DOCTYPE html>
<html>
<head>
<style>
img.demo {
   filter: brightness(120%);
   filter: contrast(120%);
}
</style>
</head>
<body>
<h1>Learn MySQL</h1>
<img src="https://www.tutorialspoint.com/mysql/images/mysql-mini-logo.jpg" alt="MySQL" width="160" height="150">
<h1>Learn MySQL</h1>
<p>Below image is brighter and has more contrast than the original image above.</p>
<img class="demo" src="https://www.tutorialspoint.com/mysql/images/mysql-mini-logo.jpg" alt="MySQL" width="160" height="150">
</body>
</html>

출력

CSS3를 사용하여 이미지 대비 조정