Posted in Javascript onMarch 22, 2013
//上下滚动 var textRoll=function(){ $('#notice p:last').css({'height':'0px','opacity': '0'}).insertBefore('#notice p:first').animate({'height':'35px','opacity': '1'}, 'slow', function() { $(this).removeAttr('style');}); } $(function(){ //触发上下文字滚动事件 var roll=setInterval('textRoll()',4000); $("#notice p").hover(function() { clearInterval(roll); }, function() { roll = setInterval('textRoll()', 4000) }); });
jquery文字上下滚动的实现方法
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@