<html>
<head>
<title>タイトルのスクロール(JavaScript)</title>
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<script language="JavaScript">
<!--
var dummy_space1 = "                ";
var scl_text = "ようこそ僕のホームページへ";
var dummy_space2 = "";
var scl_speed = 200;
scl_text = dummy_space1 + scl_text + dummy_space2;
function text_scroll() {
document.title = scl_text;
scl_text = scl_text.substring(1,scl_text.length) + scl_text.substring(0,1);
setTimeout("text_scroll()",scl_speed);
}
//-->
</script>
<style type="text/css">
<!--
input { color :red;
background-color:aqua;
border :3 double orangered;}
body { text-align: center;}
-->
</style>
</head>
<body bgcolor="#FFFFFF" onLoad="text_scroll()">

</body>
</html>