如何使用 CSS 创建图像叠加层
问题:
你想要当您将鼠标悬停在图像上时,在图像上放置一个带有文本和图标的深色叠加层。但是,您会遇到困难,因为图像高度不同,并且之前的教程都没有成功。
解决方案:
可以通过以下方式实现此效果CSS 代码:
<code class="css">.image-container { position: relative; width: 200px; height: 300px; } .image-container .after { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: none; color: #FFF; } .image-container:hover .after { display: block; background: rgba(0, 0, 0, .6); }</code>
HTML:
<code class="html"><div class="image-container"> <img src="http://lorempixel.com/300/200" /> <div class="after">This is some content</div> </div></code>
其他样式:
为了更美观的外观,考虑添加以下 CSS:
<code class="css">.image-container .after .content { position: absolute; bottom: 0; font-family: Arial; text-align: center; width: 100%; box-sizing: border-box; padding: 5px; } .image-container .after .zoom { color: #DDD; font-size: 48px; position: absolute; top: 50%; left: 50%; margin: -30px 0 0 -19px; height: 50px; width: 45px; cursor: pointer; } .image-container .after .zoom:hover { color: #FFF; }</code>
演示:
在此处查看演示:http://jsfiddle.net/6Mt3Q/
以上是如何使用 CSS 创建适用于不同高度图像的图像叠加?的详细内容。更多信息请关注PHP中文网其他相关文章!