悬停选择器不适用于这种情况?

问题描述

这是我正在开发的“石头,剪刀,剪刀”游戏。当您将鼠标悬停在手上时,我正在尝试使子文本幻灯片进入,但我似乎无法使其正常工作。我想念什么?

.choices {
  display: flex;
  flex-direction: column;
}

.hands {
  height: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
}

.far {
  font-size: 5vh;
  cursor: pointer;
}

.subText {
  height: 50%;
  display: flex;
  justify-content: space-evenly;
}

#rock,#paper,#scissors {
  opacity: 0;
  height: 0;
  background-color: rgb(100,100,100);
  text-align: center;
  margin-top: 0.5vh;
  margin-left: 2vh;
  font-size: 2vh;
  transition: 0.3s;
}

.fa-hand-rock:hover+#rock {
  opacity: 1;
  height: 40%
}

.fa-hand-paper:hover+#paper {
  opacity: 1;
  height: 40%
}

.fa-hand-scissors:hover+#scissors {
  opacity: 1;
  height: 40%
}
<section class="choices">
  <div class="hands">
    <i class="far fa-hand-rock" onclick="game(1)"></i>
    <i class="far fa-hand-paper" onclick="game(2)"></i>
    <i class="far fa-hand-scissors" onclick="game(3)"></i>
  </div>
  <div class="subText">
    <h6 id="rock">Rock</h6>
    <h6 id="paper">Paper</h6>
    <h6 id="scissors">Scissors</h6>
  </div>
</section>

解决方法

.hands{
  padding:40px;
}
.choices {
  display: flex;
  flex-direction: column;
}
.far {
  font-size: 20px;
  cursor: pointer;
  margin:0 50px;
}

.subText {
  display: block;
}

#rock,#paper,#scissors {
  opacity: 0;
  background-color: rgb(100,100,100);
  font-size: 12px;
  transition: 0.3s;
  display:inline-block;
  text-align:center;
  width:100px;
  margin:10px 15px;
}

.fa-hand-rock:hover~.subText #rock {
  opacity: 1;
}

.fa-hand-paper:hover~.subText #paper {
  opacity: 1;
}

.fa-hand-scissors:hover~.subText #scissors {
  opacity: 1;
}
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<section class="choices">
  <div class="hands">
    <i class="far fa-hand-rock" onclick="game(1)"></i>
    <i class="far fa-hand-paper" onclick="game(2)"></i>
    <i class="far fa-hand-scissors" onclick="game(3)"></i>
    <div class="subText">
      <h6 id="rock">Rock</h6>
      <h6 id="paper">Paper</h6>
      <h6 id="scissors">Scissors</h6>
    </div>
  </div>
</section>

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...