43

所以我有 2div的他们在彼此所以像这样

<div class="parent">
    <div class="child"></div>
</div>

当我将鼠标悬停background在..parent.parent

但是background当我将鼠标悬停在.child.

例如:(http://jsfiddle.net/k3Zdt/1/

.parent {
    transition:background-color 1s;
    width:100px;
    height:100px;
    background:#3D6AA2;
    padding:50px;
}

.parent:hover {
    background:#FFF;
}

.child {
    height:100px;
    width:100px;
    background:#355E95;
    transition:background-color 1s;
}

.child:hover {
    background:#000;
}
<div class="parent">
    <div class="child">
    </div>
</div>

当我将鼠标悬停在深蓝色区域上时,我希望不那么深蓝色的区域保持不那么深蓝色而不是变成白色。

我想保留这个<div>结构。而且我不想要 JavaScript 解决方案(我知道 JavaScript 解决方案,但我想保持纯 CSS)。

4

2 回答 2

24

基本上你不能:悬停子元素时如何设置父元素的样式?

但一个技巧是使用兄弟元素:http: //jsfiddle.net/k3Zdt/8/

.parent {
  width: 100px;
  height: 100px;
  padding: 50px;
}

.child {
  height: 100px;
  width: 100px;
  background: #355E95;
  transition: background-color 1s;
  position: relative;
  top: -200px;
}

.child:hover {
  background: #000;
}

.sibling {
  position: relative;
  width: 100px;
  height: 100px;
  padding: 50px;
  top: -50px;
  left: -50px;
  background: #3D6AA2;
  transition: background-color 1s;    
}

.sibling:hover {
  background: #FFF;
}
<div class="parent">
    <div class="sibling"></div>
    <div class="child"></div>
</div>

于 2013-07-29T12:35:55.990 回答
13

你可以欺骗一些东西;)

基本上,:before为子 div 使用一个伪元素,其大小相同;

当您将鼠标悬停在子 div 上时,放大:before伪元素以覆盖父 div 区域;这将导致父亲divhover效果下降,然后恢复到原来的状态。还涉及 z-index 的精确组合。

演示: http: //jsfiddle.net/gFu8h/ Dark Magic(tm)

.parent {
    width: 100px;
    height: 100px;
    padding: 50px;
    transition: background-color 1s;
    background: #3D6AA2;    
    position: relative;
    z-index: 1;
}

.parent:hover{
    background: #FFF;    
}

.child {
    height: 100px;
    width: 100px;
    background: #355E95;
    transition: background-color 1s;
    position: relative;
}

.child:hover {    
    background: #000;
}

.child:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;        
    z-index: -1;
    transition: background-color 1s;
}

.child:hover:before{
    top: -50px;
    bottom: -50px;
    left: -50px;
    right: -50px;     
    background: #3D6AA2;    
}
<div class="parent">
    <div class="child"></div>
</div>

于 2013-07-29T13:04:20.437 回答