目录

如何操作 - 图片叠加标题


了解如何在悬停时创建图片叠加标题。


图片叠加标题

将鼠标悬停在图片上即可查看叠加效果。

Avatar
我的名字是约翰
亲自试一试 »

如何创建叠加图片标题

步骤1)添加HTML:

示例

<div class="container">
  <img src="img_avatar.png" alt="Avatar" class="image">
  <div class="overlay">My Name is John</div>
</div>


步骤2)添加CSS:

示例

* {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 图片教程了解有关如何设置图片样式的更多信息。