<!DOCTYPE HTML>
<head>
<script type="text/javascript" src="jquery-2.1.4.min.js">
</script>
<style type="text/css">
.test{
width: 200px;
height: 200px;
margin: 30px auto;
border: 1px solid red;
}
.img{
width: 200px;
height: 200px;
background-image: url("images/trustcentre.jpg");
}
.text{
display: none;
width: 200px;
height: 200px;
transition:all 5s;
-webkit-transition:all 5s;
-moz-transition:all 5s;
-o-transition:all 5s;
}
.test:hover .text{
display:block;
background: #fff;
opacity: .5;
transform:translate(0px,-200px);
-webkit-transform:translate(0px,-200px);
-moz-transform:translate(0px,-200px);
-o-transform:translate(0px,-200px);
-webkit-transform: translate(0px,-200px);
}
</style>
</head>
<body>
<div class="test">
<div class="img"></div>
<div class="text">鼠标hover 以后,图片上面出现一个遮罩透明度变化,显示设置好的文字,完全使用css 实现鼠标hover 以后,图片上面出现一个遮罩透明度变化,显示设置好的文字,完全使用css </div>
</div>
</body>
</html>
我喺黄铭_M君
相关分类