标题滚动效果演示

<!DOCTYPE html>
<html>
<head>
<meta charset="gb2312" />
<title>标题滚动效果演示——标题滚动效果演示</title>
<script type="text/javascript">
(function(){
    setInterval(function(){
        text = top.document.title;
        top.document.title=text.substring(1,text.length)+text.substring(0,1);
    },500);
})();
</script>
</head>
<body>
标题滚动效果演示
</body>
</html>
转载请注明出处: 欢迎留言或qq(1090413588)交流
原文地址:https://www.cnblogs.com/linyusong/p/6999455.html