发布日期:2015-09-30 17:10:30

网页title滚动效果是实现其实就是通过js来定期修改title。

如网上的示例:

<html>
<head>
<title>滚动的文字在TITLE栏上不停滚动</title><script language=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()", 100)
}
</script>
</head>
<body onload="newtext()">
</body>
</html>

 

发表评论