我试图在我的页面的一个元素上产生悬停效果,并且效果发生在不是悬停元素的子元素的图像上。
一些html
<img id="background" src="image.jpg" />
<div id="container">
<div id="bar"></div>
</div>
<style>
#background{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
}
#bar:hover + #background{
/* apply some sexy css3 to the background image */
}
/*
tried #bar:hover ~#background
*/
</style>
所以这个想法是,当你将光标悬停在 div#bar 上时,我会对图像应用灰度效果,但我似乎无法让选择器工作:(这让我成为一只悲伤的小狗
任何帮助表示赞赏并提前感谢您:)