当前位置:  开发笔记 > 前端 > 正文

聚焦时执行操作

如何解决《聚焦时执行操作》经验,为你挑选了1个好方法。

我有3个div.其中2个在聚焦时会改变颜色.当其中两个div聚焦时,还可以对另一个div执行操作吗?

div {
  border: 1px solid;
  margin: 5px;
  width: 300px;
  height: 50px;
  padding: 2px;
}
.myClass:focus {
  background-color: yellow;
  outline: none;
}
Focus me!
You can focus me too!

I cannot be focused, but want to change my color, when one of the other divs above me get focused.

因此,当2个上部div中的1个聚焦时,我希望底部的第3个div改变其颜色.

在这里你可以看看:https://jsfiddle.net/ogpvvwtg/



1> j08691..:

当然,您可以使用通用兄弟选择器~

.myClass:focus ~ .anotherClass {
    background-color: red;
    outline: none;
}

div {
    border: 1px solid;
    margin: 5px;
    width: 300px;
    height: 50px;
    padding: 2px;
  }
  .myClass:focus {
    background-color: yellow;
    outline: none;
  }
  .myClass:focus ~ .anotherClass {
    background-color: red;
    outline: none;
  }
Focus me!
You can focus me too!

I cannot be focused, but want to change my color, when one of the other divs above me get focused.
推荐阅读
夏晶阳--艺术
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有