#fcleft"> |
|
| | | | | | | | | | |
This is a realtively simple script to make. Some people like the blinking, some people don't. It reminds me of something a diner would put outside their shop. Not much to say about this script, it kind of speaks for itself.
The source..
<script language="JavaScript">
<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com
var x = 0
var speed = 200
var text = "Welcome to Nic's Javascript Page."
function Blinky() {
window.status = text
setTimeout("Blinky2()", speed)
}
function Blinky2() {
window.status = " "
setTimeout("Blinky()", speed)
}
Blinky()
//-->
</script>
Color coding...
This is the speed in 1/100 seconds that that text blinks on and off.
Editting this changes the blinking text.
Banner
supplied by SAFE Audit