-1

.text当使用该属性单击任何四个链接时,我有一些标题文本会发生变化

现在我需要在mouseout(鼠标悬停)时对其进行动画处理,有人可以把它放在一起吗?

$('#clickdiv').mouseout(function(){
       $('#header').text('new text');

  }); 

$('#header').fadeIn(2000);
4

2 回答 2

1
$('#clickdiv').mouseout(function(){
       $('#header').text('new text');
       $('#header').fadeIn(2000);
}); 

或者

$('#clickdiv').mouseout(function(){
       $('#header').text('new text').fadeIn(2000);
}); 
于 2012-11-24T11:57:54.910 回答
0

你能发布你的一些 HTML,因为它很难得到想法,

http://jsfiddle.net/UDgTK/2/

$('#clickdiv').mouseout(function(){
       $('#header').fadeIn(2000);
}); ​
于 2012-11-24T12:05:30.780 回答