$(".case-icon li").hover(function(){
// $(this).children(".xianshi").eq(0).removeClass("yincang");
// $(this).children(".aa").eq(0).addClass("yincang");
$(this).children(".yincang").removeClass("yincang");
$(this).children(".xianshi").addClass("yincang");
},function(){
// $(this).children(".yincang").eq(0).removeClass("yincang");
// $(this).children(".xianshi").eq(0).addClass("yincang");
$(this).children(".aa").addClass("yincang");
$(this).children(".xianshi").removeClass("yincang");
});
I would like to ask, how do I get rid of the first default style and let it move the mouse into the picture and change the text into the picture and the other into the picture as its content? Move the mouse out the opposite way.