![]() |
Fade in background with VBScriptThis page uses VBScript to illustrate how to create a fade in background. Notes
Code Details
<body bgcolor="FFFFFF" text="000000" link="0000FF" vlink="800080">
<!-- Fade background. Just change the Bgcolor for effects -->
<script language = "vbscript">
<!-- To hide VBScript code from browsers that do not support it.
For i = 16 To 255 Step 2
y = Hex(i)
Document.Bgcolor = y & y & y
Next
Document.Bgcolor = "ffffff"
-->
</script>
|