Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

จะสร้างชื่อภาพซ้อนทับบนโฮเวอร์ด้วย CSS ได้อย่างไร?


ต่อไปนี้เป็นรหัสสำหรับสร้างชื่อภาพซ้อนทับบนโฮเวอร์โดยใช้ CSS -

ตัวอย่าง

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {box-sizing: border-box;}
.card-container {
   position: relative;
   width: 50%;
}
.image {
   display: block;
   width: 100%;
   height: auto;
}
.overlay {
   position: absolute;
   bottom: 0;
   background: rgba(48, 9, 155, 0.5);
   width: 78%;
   transition: .5s ease;
   opacity:0;
   color: rgb(251, 255, 0);
   font-size: 25px;
   font-weight: bolder;
   padding: 20px;
   text-align: center;
}
.card-container:hover .overlay {
   opacity: 1;
}
</style>
</head>
<body>
<h2>Image Overlay Title Example</h2>
<div class="card-container">
<img src="https://i.picsum.photos/id/237/536/354.jpg" >
<div class="overlay">Dog</div>
</div>
</body>
</html>

ผลลัพธ์

รหัสข้างต้นจะสร้างผลลัพธ์ต่อไปนี้ -

จะสร้างชื่อภาพซ้อนทับบนโฮเวอร์ด้วย CSS ได้อย่างไร?

เมื่อวางเมาส์เหนือรูปภาพ คำบรรยายจะแสดงเป็นด้านล่าง −

จะสร้างชื่อภาพซ้อนทับบนโฮเวอร์ด้วย CSS ได้อย่างไร?