动画(fadein)一个jquery函数

时间:2012-11-24 11:56:41

标签: jquery html

我有一些标题文字在使用.text属性

点击任意四个链接时会发生变化

现在我需要在mouseout(鼠标悬停)时为其设置动画,有人可以把它放在一起吗?

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

  }); 

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

2 个答案:

答案 0 :(得分:1)

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

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

答案 1 :(得分:0)

你能发布一些HTML,因为它很难理解,

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

$('#clickdiv').mouseout(function(){
       $('#header').fadeIn(2000);
}); ​