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

CSS로 이미지 오버레이 호버 효과를 만드는 방법은 무엇입니까?


다음은 CSS로 하단 탐색 메뉴를 생성하는 코드입니다 −

예시

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.card-container {
   display: inline-block;
   position: relative;
   width: 50%;
}
img {
   opacity: 1;
   display: block;
   width: 100%;
   transition: .5s ease;
   backface-visibility: hidden;
}
.hoverText {
   transition: .5s ease;
   opacity: 0;
   position: absolute;
   top: 50%;
   left: 40%;
   text-align: center;
}
.card-container:hover img {
   opacity: 0.4;
}
.card-container:hover .hoverText {
   opacity: 1;
}
.caption {
   background-color: rgb(18, 53, 131);
   color: white;
   font-size: 30px;
   padding: 20px;
   border-radius: 6px;
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   font-weight: bolder;
}
</style>
</head>
<body>
<h1>Image Overlay effect Example</h1>
<div class="card-container">
<img src="https://i.picsum.photos/id/237/536/354.jpg">
<div class="hoverText">
<div class="caption">Dog</div>
</div>
</div>
</body>
</html>

출력

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

CSS로 이미지 오버레이 호버 효과를 만드는 방법은 무엇입니까?

이미지 위로 마우스를 가져가면 캡션이 다음과 같이 표시됩니다. -

CSS로 이미지 오버레이 호버 효과를 만드는 방법은 무엇입니까?