码迷,mamicode.com
首页 > Web开发 > 详细

网页title栏文字滚动

时间:2014-12-24 19:47:26      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:

<script type="text/javascript">
    var text = document.title
    var timerID
    function newtext() {
        clearTimeout(timerID)
        document.title = text.substring(1, text.length) + text.substring(0, 1)
        text = document.title.substring(0, text.length)
        timerID = setTimeout("newtext()", 300)
    }
    newtext();
</script>

  如有需要可以直接复制js代码运行就可以了

网页title栏文字滚动

标签:

原文地址:http://www.cnblogs.com/hjlost/p/4182905.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!