给网友们整理jquery相关的编程文章,网友越睿才根据主题投稿了本篇教程内容,涉及到jquery、文字滚动、jquery文字上下滚动的实现方法相关内容,已被184网友关注,内容中涉及的知识点可以在下方直接下载获取。
jquery文字上下滚动的实现方法
//上下滚动
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)
});
});