了解如何在悬停时创建图片叠加标题。
将鼠标悬停在图片上即可查看叠加效果。
<div class="container">
<img src="img_avatar.png" alt="Avatar" class="image">
<div class="overlay">My Name is John</div>
</div>
* {box-sizing: border-box}
/* Container needed to position the overlay. Adjust the width as needed */
.container {
position: relative;
width: 50%;
max-width: 300px;
}
/* Make the image to responsive */
.image {
display: block;
width: 100%;
height: auto;
}
/* The overlay effect - lays on top of the container and over the image */
.overlay {
position: absolute;
bottom: 0;
background: rgb(0, 0, 0);
background: rgba(0, 0, 0, 0.5); /* Black see-through */
color: #f1f1f1;
width: 100%;
transition: .5s ease;
opacity:0;
color: white;
font-size: 20px;
padding: 20px;
text-align: center;
}
/* When you mouse over the container, fade in the overlay title */
.container:hover .overlay {
opacity: 1;
}
亲自试一试 »
提示:另请参阅我们的其他图片叠加效果(淡入淡出、幻灯片等)操作方法 - 图片悬停叠加。
去我们的CSS 图片教程了解有关如何设置图片样式的更多信息。
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!