.text
プロパティを使用して 4 つのリンクをクリックすると変更されるヘッダー テキストがあります。
今、私は mouseout(mouse hovers out) のときにそれをアニメーション化する必要があります.誰かがこれをまとめることができますか?
$('#clickdiv').mouseout(function(){
$('#header').text('new text');
});
と
$('#header').fadeIn(2000);
$('#clickdiv').mouseout(function(){
$('#header').text('new text');
$('#header').fadeIn(2000);
});
また
$('#clickdiv').mouseout(function(){
$('#header').text('new text').fadeIn(2000);
});
アイデアを得るのが非常に難しいので、HTML の一部を投稿できますか?
$('#clickdiv').mouseout(function(){
$('#header').fadeIn(2000);
});