类似WEBQQ新消息的标题滚动


function rolltitle()
{
    timerID 
= window.setInterval("newtext()"500); //定时器 间隔500ms 调用一次 newtext()
}
function stoprolltitle()
{
    window.clearInterval(timerID);

}
function newtext()
{
    text 
= top.document.title;
    top.document.title
=text.substring(1,text.length)+text.substring(0,1)
    text
=top.document.title.substring(0,text.length)
}
posted on 2009-09-17 13:05  onle  阅读(408)  评论(0编辑  收藏  举报