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

마우스 오버 시 이미지 불투명도 변경

<시간/>

:hover 선택기와 함께 opacity 속성을 사용하여 마우스 오버 시 불투명도를 변경합니다. 다음은 마우스 오버 시 이미지 불투명도를 변경하는 코드입니다 -

예시

<!DOCTYPE html>
<html>
<head>
<style>
body{
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.transparent{
   width:270px;
   height:200px;
   opacity: 1;
   transition: 0.3s;
}
.transparent:hover{
   opacity: 0.3;
}
</style>
</head>
<body>
<h1>Image opacity on hover example</h1>
<img class="transparent" src="https://i.picsum.photos/id/505/800/800.jpg" >
<h2>Hover over the above image to change its opacity</h2>
</body>
</html>

출력

위의 코드는 다음과 같은 출력을 생성합니다 -

마우스 오버 시 이미지 불투명도 변경