亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

jquery文字上下滾動(dòng)的實(shí)現(xiàn)方法

 更新時(shí)間:2013年03月22日 09:56:05   作者:  
jquery文字上下滾動(dòng)的實(shí)現(xiàn)方法,需要的朋友可以參考一下

復(fù)制代碼 代碼如下:

//上下滾動(dòng)

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(){

//觸發(fā)上下文字滾動(dòng)事件

var roll=setInterval('textRoll()',4000);

$("#notice p").hover(function() {

                                clearInterval(roll);

                             }, function() {

                                 roll = setInterval('textRoll()', 4000)

                            });

            });

相關(guān)文章

最新評(píng)論