html 当鼠标停留在图片上 显示另外一个div
2个回答
展开全部
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
* {box-sizing: border-box;margin: 0;padding: 0}
.box, .aa img{width: 250px;height: 350px;overflow: hidden;} /*范围之外不可见*/
.text {
background: rgba(0,0,0,.5);
padding: 10px;
color:#fff;
font-size: 20px;
position: relative;
margin-top: 0; /*text默认处于aa盒子下面,所以不可见*/
transition: .5s} /*transition为过渡动画效果,时间0.5秒*/
.box:hover .text {margin-top: -72px} /*鼠标经过box, 则text逐渐上移到aa范围内*/
.text span {font-size: 16px;color: #655c5c}
.text img {width: 100%}
</style>
</head>
<body>
<div class="box">
<div class="aa">
<img src="http://www.nanningsn.com/uploadfiles/adver/pro-07.jpg">
</div>
<div class="text">
<p>我是隐藏的DIV标题</p> <span>我也是隐藏的内容介绍</span>
</div>
</div>
</body>
</html>
采纳吧,好用的话给个赞,也希望和大家一起讨论私聊,
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询