Je cherche à savoir comment modifier ce code jQuery pour que seul le parent survolé affiche son enfant. Pour le moment, tous les enfants s'affichent lorsque n'importe quel parent est survolé.
Toute aide est grandement appréciée.
jQuery(document).ready(function($) {
$(".parent").hover(
function () {
$(".child").addClass("hover");
},
function () {
$(".child").removeClass("hover");
}
);
});
.parent {
position:relative;
width:100px;
height:100px;
background:red;
display:inline-block;
float:left;
margin-right:6px;
}
.child {
width:inherit;
height:30px;
position:absolute;
bottom:0;
background-color:blue;
opacity:0;
transition:0.5s;
}
.child.hover {
opacity:1;
}