我写了以下简短的脚本,我想设置"外观"慢下来所以它基本上会慢慢消失,而不仅仅是弹出。我该怎么做?我想继续追加。
block(object as! Object, ...)
答案 0 :(得分:0)
您可以在之前隐藏的span
上使用fadeIn函数:
$("#text").hover(
function() {
$( this ).append( $( "<span>Climate change: 'Monumental' deal to cut HFCs, fastest growing greenhouse gases</span>" ).hide().fadeIn('slow'));
},
function() {
$(this).find("span:last").remove();
}
);