如何使用CSS排除悬停效果

时间:2013-10-12 00:25:39

标签: html css class

我已经编写了一些代码,因此当您滚动图像时会弹出一个desc框,但是设置CSS的方式我必须在hover类中包含弹出框,这意味着当你离开时将基本图像放在它所保留的盒子上,如何更改此项,以便在从图标图像移动光标后盒子消失。

<!DOCTYPE html>
<html>
<head>
<style> 

p { margin-top: -6px; }

h1.d1 {
    color: #0195d3;
    font-size: 18px;
    font-weight:bold;
    font-family:"Veranda",Arial;
    letter-spacing:.8px;
    text-align:left;
    }

p.d2 {
    color:#c8c8c8;
    font-size: 12px;
    font-family:"Veranda",Arial;
    letter-spacing:.05px;
    line-height:100%;
    text-align:left;
    }

.desc{
    background: black;
    opacity: .85;
    height: 140px;
    width: 180px;
    margin: 0 auto;
    position: absolute;
    text-align: center;
    top: -100px;
    left:-20px;
    display:none;
    padding:1px 20px;

}
.desc:after{
    content:'';
    position:absolute;
    bottom:-5px;
    width:20px;
    height:20px;
    background:black;
    left:20%;
    margin-left:-10px;
    -moz-transform:rotate(45deg);
    -webkit-transform:rotate(45deg);
    transform:rotate(45deg);
}
.icon {
    margin:200px;
    float:left;
    position:relative;
    cursor:pointer;
}

.icon:hover .desc{
    display:block;
}
</style>
</head>
<body>

<div class="icon">
<img src="Images/Icon/Vault.png">
<div class="desc">
<h1 class="d1">Vault</h1>
<p class="d2">9/24/13</p>
<p class="d2">Who knew a 2D platformer could also be an epic RPG quest?  
Vault is about exploration and...</p>
</div>
</div>

</body>
</html>

1 个答案:

答案 0 :(得分:0)

  

这意味着当你将基本图像移到它所保留的盒子上时,如何更改它,以便在从图标图像移动光标后盒子消失。

简单地告诉它在它自己被徘徊时再次消失:

.icon .desc:hover { display:none; }

但要注意,如果它消失,这可能会导致“闪烁”效果再次将光标留在图像上,因为这会触发盒子再次变得可见......所以如果盒子不重叠,这种效果非常好图像。

http://jsfiddle.net/XVgcT/