如何影响以前的兄弟姐妹

时间:2017-09-13 17:55:55

标签: javascript html css

我知道这个问题以前曾被问过很多次,但每个案例都有所不同。 为了清楚起见,我看过类似的帖子,并没有给我答案。

所以,我有这个代码:

body {
  width: 100%: height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
}

#div1 {
  display: inline;
  height: 100%;
  width: 100%;
  -webkit-transition: all 2s;
  margin-left: 0%;
}

#div2 {
  display: inline;
  height: 100%;
  width: 100%;
  -webkit-transition: all 2s;
  margin-left: 0%;
}

#div3 {
  display: inline;
  height: 100%;
  width: 100%;
  -webkit-transition: all 2s;
  margin-left: 0%;
}

#photo1 {
  width: 30%;
  position: absolute;
  margin-top: 10%;
  -webkit-transition: all 2s;
  margin-left: -6%;
}

#photo2 {
  width: 30%;
  position: absolute;
  margin-top: 10%;
  margin-left: 37%;
  -webkit-transition: all 2s;
  opacity: 1;
}

#photo3 {
  margin-top: 10%;
  position: absolute;
  margin-left: 77%;
  width: 30%;
  -webkit-transition: all 2s;
}

#photo1:hover {
  width: 35%;
  margin-top: 8%;
  margin-left: 2%;
}

#photo2:hover {
  width: 35%;
  margin-top: 8%;
  margin-left: 35%;
}

#photo3:hover {
  width: 35%;
  margin-top: 8%;
  margin-left: 63%;
}

#div1:hover+#div2 {
  margin-left: 2%;
}
<div id="content">
  <div id="div1">
    <img id="photo1" src="https://placeimg.com/200/200/any">
  </div>
  <div id="div2">
    <img id="photo2" src="https://placeimg.com/200/200/any">
  </div>
  <div id="div3">
    <img id="photo3" src="https://placeimg.com/200/200/any">
  </div>
</div>

代码工作正常,但我想让它也向后工作(当将鼠标悬停在div3上时,div1和div2左边距离设置为-2)。 有任何想法吗? 谢谢!

0 个答案:

没有答案