這大概很容易實現,但我無法弄清楚如何去做。我想,當你將鼠標懸停在第一個元素上時,改變第二個和第三個元素的不透明度(使它們出現)。如何影響下一個元素和元素後
.two{
opacity:0;
}
.three{
opacity:0;
}
.one:hover + .two, .one:hover + .three{
opacity:1;
}
<div class = "one">
<h1>one</h1>
</div>
<div class = "two"><h1>two</h1></div>
<div class = "three"><h1>three</h1></div>
然後,我會希望有這樣的事情:
.one:hover + .two, ++.three{
opacity:1;
}
謝謝你的努力,但這似乎並不奏效。 –