?? 36.html
字號:
<html>
<head>
<title>文字外圍擴散</title>
</head>
<body>
<span id="theText" style="width:100%">
<h1 align="center">
<font color="red">HELLO!真高興你能來我的主頁</font></h1></span>
<script>
<!--
var from = 5; //設置擴散范圍其始尺寸
var to = 20; //設置擴散范圍結束尺寸
var delay = 1; //設置擴散速度
var glowColor = "orange"; //設置外圍顏色
var i = to;
var j = 0;
textPulseDown();
function textPulseUp()
{
if (!document.all)
return
if (i < to)
{
theText.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i + ")";
i++;
theTimeout = setTimeout('textPulseUp()',delay);
return 0;
}
if (i = to)
{
theTimeout = setTimeout('textPulseDown()',delay);
return 0; }
}
function textPulseDown()
{
if (!document.all)
return
if (i > from)
{
theText.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i + ")";
i--;
theTimeout = setTimeout('textPulseDown()',delay);
return 0;
}
if (i = from)
{
theTimeout = setTimeout('textPulseUp()',delay);
return 0; }
}
//-->
</script>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -