3

私はdivと関数のマウスオーバーを持っています:

$('#mydiv').mouseover(function(){
    $('#otherdiv').show('slow');
});

$('#otherdiv').mouseout(function(){
    $('#otherdiv').hide('slow');
});

しかし...#otherdivショーの表紙は、互いに分離され#mydivた5つの画像で構成されています。その後消え1pxたいのですが、点滅します。#otherdivmouseout

どうやってするの?

4

2 に答える 2

4
$('#mydiv').hover(function(){
    $('#otherdiv').stop().show('slow');
}, function(){
    $('#otherdiv').stop().hide('slow');
});

デモ jsBin
http://api.jquery.com/hover
http://api.jquery.com/stop

于 2012-05-20T17:34:08.403 に答える
2

で試してみてくださいstop

$('#mydiv').mouseover(function(){
    $('#otherdiv').stop().show('slow');
});

$('#otherdiv').mouseout(function(){
    $('#otherdiv').stop().hide('slow');
});
于 2012-05-20T17:35:05.823 に答える