css3 实现图片遮罩效果,hover出现文字

本文介绍如何仅使用CSS实现鼠标悬停时图片上出现遮罩并展示文字的效果。通过设置:hover伪类,调整透明度及背景颜色,使得图片在悬停状态下呈现出不同的视觉效果。


鼠标hover 以后。图片上面出现一个遮罩, 透明度变化,  显示设置好的文字的文字,完全使用css 实现,下图是效果



关键代码  

.featured-image:hover {
	opacity: 0.9;
	color: #fff;
	background: rgba(0,0,0,0.8);
}

看源码吧

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<style>

#content article {
	float: left;
	margin-right: 4%;
	max-width: 236px;
	position: relative;
	width: 22%;
	margin-bottom: 3.5%;
}
#content article:nth-child(4n+4) {
	margin-right: 0;
}
.post-format-content {
	position: relative;
	background: #111;
}
.post-thumbnail {
	max-width: 100%;
	height: auto;
	overflow: hidden;
}
.content-wrap {
	padding: 0;
	position: absolute;
	text-align: center;
	width: 100%;
	top: 0;
	bottom: 0;
	display: table-cell;
	vertical-align: middle;
	overflow: hidden;
}
.content-wrap h1.entry-title {
	display: table;
	font-size: 110%;
	height: 100%;
	text-transform: uppercase;
	width: 100%;
	margin:0;
}
.edit-link {
	z-index: 2;
}
.featured-image {
	display: table-cell;
	position: relative;
	transition: opacity .25s ease-in-out, background .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out, background .25s ease-in-out;
	-webkit-transition: opacity .25s ease-in-out, background .25s ease-in-out;
	vertical-align: middle;
	z-index: 1;
	color: #fff;
	text-decoration: none;
	opacity: 0;
	padding: 10%;
}
.featured-image:hover {
	opacity: 0.9;
	color: #fff;
	background: rgba(0,0,0,0.8);
}
.post-thumbnail img {
	display: block;
}
img {
	max-width: 100%;
	height: auto;
}

</style>
</head>

<body>
<div id="content">

<article  class="post-152 post type-post status-publish format-standard hentry category-people category-photos">
  <div class="post-format-content">
    <div class="post-thumbnail"> <img width="480" height="640" src="assets/img/1.jpg" class="attachment-thumbnail wp-post-image" alt="105694702"> </div>
    <div class="content-wrap">
      <h1 class="entry-title"><a href="" class="featured-image" rel="bookmark">Music & Fashion</a></h1>
    </div>
  </div>
</article>
<article  class="post-152 post type-post status-publish format-standard hentry category-people category-photos">
  <div class="post-format-content">
    <div class="post-thumbnail"> <img width="480" height="640" src="assets/img/2.jpg" class="attachment-thumbnail wp-post-image" alt="105694702"> </div>
    <div class="content-wrap">
      <h1 class="entry-title"><a href="" class="featured-image" title="amp; Fashion" rel="bookmark">Music & Fashion</a></h1>
    </div>
  </div>
</article>
</div>
</body>
</html>


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值