这是jsfiddle
//Fade in and out animation on hove buttons - icon set, features.
$(window).load(function() {
$("ul#features_icons li img").hover(function() {
$(this).next("span").animate({ opacity: "show" }, "fast");
}, function() {
$(this).next("span").animate({opacity: "hide"}, "fast");
});
});
我正在尝试实现悬停效果,其中跨度的内容将显示:无,但只要将鼠标悬停在它上面就会变成显示:块。使用css,我设法通过使用负边距将它放在图像的顶部,但我的问题是使这个跨度相对于图像居中。
有任何想法吗?
使用 css 是不可能的。那么一定是用jquery的东西吗?
谢谢!