God is our refuge and strength
a very present help in trouble. Ps.46:1
Codes
Credit for these codes goes to HTML BASIX
Code for scrolling marquee, pic of David above
(insert your url where this url is located http://freepages.genealogy.rootsweb.com/~baxter/grma/tn_nov22_40.jpg)
code is below-----------
<marquee bgcolor="#CC3333" direction="left" behavior="scroll" scroll="continuous" scrollamount="3"
align="center" width="200" height="30" style="font-size:12px;color:#6633ff;font-family:verdana;border:1px #FFFFFF solid;">
<img src="http://freepages.genealogy.rootsweb.com/~baxter/grma/tn_nov22_40.jpg" border="0"></marquee>
Code for scrolling marquee, Text
<marquee bgcolor="#CC3333" direction="left" behavior="scroll" scroll="continuous" scrollamount="3"
align="center" width="200" height="30" style="font-size:12px;color:#FFFFFF;font-family:verdana;border:1px #FFFF99 solid;">
This is a pic of David, his 1st day of school in Richmond</marquee>
Code for scrolling marquee, Animated
<marquee bgcolor="#CC3333" direction="left" behavior="scroll" scroll="continuous" scrollamount="3" align="center" width="200" height="30" style="font-size:12px;color:#FFFFFF;font-family:verdana;border:1px #FFFF99 solid;"><img src="http://freepages.genealogy.rootsweb.com/~baxter/ha2.gif" border="0"></marquee>
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
http://www.codelifter.com/main/javascript/rainbowscrollbars1.html#
Code for flashing rainbow scroolbar
===========================================================
Script: TriState Rainbow Scrollbar Script I
Function: Causes all page scrollbars to blink in three
colors; on/off control (optional) can turn effect
on and off via links
Browsers: IE 5.5 (degrades gracefully on other browsers)
Author: etLux
===========================================================
Step 1.
Put the following script in the head of your page:
<script>
// (C) 2000 by CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header
// blink speed in miliseconds
var rate = 333;
// true to start automatically, else false
var DoIt = true
// the three blink colors
var Color1 = "#FF0000"
var Color2 = "#00FF00"
var Color3 = "#0000FF"
// the color if/when turned off
var ColorX = "#C0C0C0"
var i = 0;
function doTriStateRainbow(){
if (document.all){
if (DoIt){
i++;
if (i==1) C = Color1
if (i==2) C = Color2
if (i==3) C = Color3
document.body.style.scrollbarBaseColor = C
if (i>2) i=0;
timer=setTimeout('doTriStateRainbow()', rate)
}else{
document.body.style.scrollbarBaseColor = ColorX
}
}
}
</script>
===========================================================
Step 2.
Put this onload event call in your body tag:
<body onload="doTriStateRainbow()">
===========================================================
Step 3. (Optional)
To add on and off controls, use the following:
<a href="#" onClick="DoIt=false">Off</a>
<a href="#" onClick="DoIt=true;doTriStateRainbow()">On</a>
===========================================================