ここに希望の効果があります:
$(function() {
$(".fadeimg").find(".spanimg").hide();
$(".fadesub").find(".spansub").hide();
$(".fadeimg").hover(
function(){
$(this).find(".spanimg").stop(true, true).fadeIn(1000);
$(this).next().find(".spansub").stop(true, true).slideDown(500);
},
function(){
$(this).find(".spanimg").stop(true, true).fadeOut(1000);
$(this).next().find(".spansub").stop(true, true).slideUp(500);
}
);
$(".fadesub").hover(
function() {
$(this).find(".spansub").stop(true, true).slideDown(500);
$(this).prev().find(".spanimg").stop(true, true).fadeIn(1000);
},
function() {
$(this).find(".spansub").stop(true, true).slideUp(500);
$(this).prev().find(".spanimg").stop(true, true).fadeOut(1000);
}
);
});
これはそれです。クイックヘルプに感謝します。 – Paul