首页 > Web开发 > 详细

css3 实现鼠标放到一个div上显示出另一个隐藏的div

时间:2017-06-08 01:06:44      阅读:1151      评论:0      收藏:0      [点我收藏+]

<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="utf-8"/>
<title>CSS Test Page</title>
<style type="text/css">
*{
margin: 0;
padding: 0;
}
.cent{
background:#0CF; height:200px; width:100px;
}
.cs{
width:100px;
height:200px;
background:#F09;
top:0px;
position:absolute;
opacity: 0;
display: block;
font-size: 12px;
transition: 0.3s;
-webkit-transition: .5s;
-moz-transition: .5s;
}
.cent:hover .cs{
color: #656e73;
opacity: 1;
}
</style>

</head>
<body>

<div class="cent">
This is the cent div
<div class="cs">
<p>this is a cs div</p>
</div>
</div>

</body>
</html>

css3 实现鼠标放到一个div上显示出另一个隐藏的div

原文:http://www.cnblogs.com/Lily-L/p/6959782.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!