.text
当使用该属性单击任何四个链接时,我有一些标题文本会发生变化
现在我需要在mouseout(鼠标悬停)时对其进行动画处理,有人可以把它放在一起吗?
$('#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);
});