~ Animated title ~
~ I've recied a LOT of questions about my animated title! Its actually really simple, just place the following code in any part between your <head> and </head>.
This code:
<script language="JavaScript">
var gabysflashtitle1=' (^ - ^) Your title'; // put frame 1 text
var gabysflashtitle2=' (^ - ^) Your title '; // put frame 2 text
var gabysflashtitle3=' (^ - ~) Your title '; // put frame 3 text
var gabysflashtitle4=' (^ - ^) Your title '; // put frame 4 text
var gabysflashtitle5=' (^ - ^) Your title '; // put frame 5 text
var gabysflashtitle6=' (^ - ^) Your title '; // put frame 6 text
var gabysflashtitle7=' (~ - ^) Your title '; // put frame 7 text
var gabysflashtitle8=' (^ - ^) Your title '; // put frame 8 text
var gabysduration = 800; // duration high = slower animation
step=0
function gabysflashtitle()
{
step++
if (step==9) {step=1}
if (step==1) {document.title=gabysflashtitle1}
if (step==2) {document.title=gabysflashtitle2}
if (step==3) {document.title=gabysflashtitle3}
if (step==4) {document.title=gabysflashtitle4}
if (step==5) {document.title=gabysflashtitle5}
if (step==6) {document.title=gabysflashtitle6}
if (step==7) {document.title=gabysflashtitle7}
if (step==8) {document.title=gabysflashtitle8}
setTimeout("gabysflashtitle()", gabysduration);
}
gabysflashtitle()
</script>
~ The only thing you should change is where you see the 8 faces like these:
(^ - ^) Your title
(^ - ~) Your title
~ Replace it with something like:
*- Your title -*
-* Your title *-
DO NOT touch anything else unless you know what you are doing! Otherwise you'll mess up the code!