我有一些标题文字在使用.text
属性
现在我需要在mouseout(鼠标悬停)时为其设置动画,有人可以把它放在一起吗?
$('#clickdiv').mouseout(function(){
$('#header').text('new text');
});
和
$('#header').fadeIn(2000);
答案 0 :(得分:1)
$('#clickdiv').mouseout(function(){
$('#header').text('new text');
$('#header').fadeIn(2000);
});
或
$('#clickdiv').mouseout(function(){
$('#header').text('new text').fadeIn(2000);
});
答案 1 :(得分:0)
你能发布一些HTML,因为它很难理解,
$('#clickdiv').mouseout(function(){
$('#header').fadeIn(2000);
});