我有两张图片,其中 DIV 在悬停时显示,显示一些用户信息。它的外观符合预期,但我不知道如何只在悬停的图像上显示信息。
我怎样才能做到这一点?
这是代码的实时工作示例:http: //jsfiddle.net/uvHw4/
原始 JavaScript 代码:
$(document).ready(function() {
$('.start_profile_container_text').hide();
$('.start_profile_container').mouseenter(function() {
$('.start_profile_container_text').show('slide', { direction: "down"} ,'fast');
});
$('.start_profile_container').mouseout(function() {
$('.start_profile_container_text').hide('slide', { direction: "down"} ,'fast');
});
});