如何创建 - 图像叠加缩放
了解如何在悬停时创建图像叠加缩放效果。
图像悬停全屏缩放
将鼠标悬停在图像上以查看缩放效果。
如何创建叠加缩放效果
步骤 1) 添加 HTML:
实例
<div class="container">
<img src="img_avatar.png" alt="Avatar"
class="image">
<div class="overlay">
<div
class="text">Hello World</div>
</div>
</div>
步骤 2) 添加 CSS:
实例
/* 定位覆盖所需的容器。 根据需要调整宽度 */
.container {
position: relative;
width: 50%;
}
/* 使图像响应式 */
.image {
width: 100%;
height: auto;
}
/* 叠加效果(全高和全宽) - 位于容器顶部和图像上方 */
.overlay {
position: absolute;
bottom: 0;
left: 0;
right:
0;
background-color: #008CBA;
overflow: hidden;
width: 100%;
height: 100%;
transform: scale(0);
transition: .3s ease;
}
/* 当您将鼠标悬停在容器上时,覆盖文本将显示为 "zoom" */
.container:hover .overlay {
transform: scale(1);
}
/* 覆盖层内的一些文本,垂直和水平位于中间 */
.text {
color: white;
font-size: 20px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
亲自试一试 »
提示:还可以在我们的操作方法 - 图像悬停覆盖中查看其他图像覆盖效果(淡入淡出、滑动等)。 p>
转到我们的 CSS 图像教程,了解有关如何设置图像样式的更多信息。