我有一个带有叠加层的图像列表。当我将鼠标悬停在图像上时,文本和叠加层应该会使用 JQuery 消失。当我将鼠标悬停在图像上时,该特定图像的覆盖消失,这是正确的。问题是文本。当我将鼠标悬停在图像上时,该图像和所有其他图像上的文本都会消失。我只希望隐藏该特定图像的文本和叠加层。这似乎是一个小问题,因为我让叠加层正常工作。先谢谢朋友。
这是JQuery:
//Hides the screen and text on mouseover
$('.screen').mouseover(function() {
$('.screen_text').hide();
$(this).slideUp(400);
});
//Shows the screen and text on mouseout
$('.portfolio img').mouseout(function() {
$('.screen_text').show();
$('.screen').slideDown(400);
});