ENTRY ABOUT LINKS STUFFS FCBOOK DBROAD NEWER OLDER +FOLLOW
“走来走去”的字~
xx Minamori xx



大家看看我的Header那边,有没有字会像“走来走去”的那样 ? (ps我不会解释==)

简单地说,就像上面的图那样。

想知道要怎样弄 ? 我就教教你 =D

其实很容易 , 老样子, 去 设计 -> 添加小工具 ->HTML/Javascprit

然后把以下的code copy and paste进去 :

<script language="javascript">
<!--
var tx = new Array (
"__欢迎光临我的世界_我的地盘__"
);
var txcount=1
var i=1;
var wo=0;
var ud=1;
function animatetitle()
{
window.document.title=tx[wo].substr(0, i)+"_";
if (ud==0) i--;
if (ud==1) i++;
if (i==-1) {ud=1;i=0;wo++;wo=wo%txcount;}
if (i==tx[wo].length+10) {ud=0;i=tx[wo].length;}
// if (window.document.title.length < 20 ) window.document.title=window.document.title+"-";
// if (window.document.title.length == 20 ) window.document.title=window.document.title+"]";
// if (window.document.title.length == 21 ) setTimeout("window.document.title='Animierte Seitentitel '; ",1000);
parent.window.document.title=tx[wo].substr(0, i)+"_";
setTimeout("animatetitle()",200);
}
animatetitle();
// -->
</script>

粉红色的字可以改成你要的字 :)

然后save就完成啦 =D

0 comment[s] | back to top