Stay Signed In
Do you want to access your site more quickly on this computer? Check this box, and your username and password will be remembered for two weeks. Click logout to turn this off.
Stay Safe
Do not check this box if you are using a public computer. You don't want anyone seeing your personal info or messing with your site.
For each code you must remove all the spaces in between the < and > in order for them to work. They usually appear at the beginning and end of each code.
1)
Want rainbox text like in my title? Copy the code in the box below and don't forget to remove all spaces in between < and >
< SCRIPT LANGUAGE="JavaScript1.2" >
< /script >
< script >
/*
RAINBOW TEXT Script by Matt Hedgecoe (c) 2002
Featured on JavaScript Kit
For this script, visit http://www.javascriptkit.com
*/
// ********** MAKE YOUR CHANGES HERE
var text="This Is The Rainbow Text!!!" // YOUR TEXT
var speed=80 // SPEED OF FADE
// ********** LEAVE THE NEXT BIT ALONE!
if (document.all||document.getElementById){
document.write('' + text + '')
var storetext=document.getElementById? document.getElementById("highlight") : document.all.highlight
}
else
document.write(text)
var hex=new Array("00","14","28","3C","50","64","78","8C","A0","B4","C8","DC","F0")
var r=1
var g=1
var b=1
var seq=1
function changetext(){
rainbow="#"+hex[r]+hex[g]+hex[b]
storetext.style.color=rainbow
}
function change(){
if (seq==6){
b--
if (b==0)
seq=1
}
if (seq==5){
r++
if (r==12)
seq=6
}
if (seq==4){
g--
if (g==0)
seq=5
}
if (seq==3){
b++
if (b==12)
seq=4
}
if (seq==2){
r--
if (r==0)
seq=3
}
if (seq==1){
g++
if (g==12)
seq=2
}
changetext()
}
function starteffect(){
if (document.all||document.getElementById)
flash=setInterval("change()",speed)
}
starteffect()
< /script >
< script >
/*
Roller Coaster Script-
By JavaScript Kit
Over 200+ free scripts here!
*/
var fs=1
var direction="right"
function rollertext(whichone){
var thetext=whichone
for (i=0;i-thetext.length;i++){
document.write(thetext.charAt(i).fontsize(fs))
if (fs-7&&direction=="right")
fs++
else if (fs==7){
direction="left"
fs--
}
else if (fs==1){
direction="right"
fs++
}
else if (fs-1&&direction=="left")
fs--
}
}
//Change below text to your won
rollertext("This Is The Rollercoaster Text!!!!")
< /script >
2)
Does my site help you?
Want one of these?
< FORM >Yes< INPUT type="radio" onClick="alert('TEXT ERE')">
No
< INPUT type="radio" onClick="alert('TEXT ERE')">< /FORM >
3)
4)
Pop-up msg code below!!
Annoyed that everyone is stealing YOUR pics and putting them onto their site? Then this is the ideal code for you! It get's rid of the right click on your page AND has a little pop up message telling them where to shove it (only if you REALLY want)!!
< SCRIPT >alert ('POP UP MSG TEXT HERE')
< /SCRIPT >
< script language="JavaScript">
// distributed by http://hypergurl.com
< /script >
*HoVeR FoR eXaMpLe*
-this makes your pic fade when the mouse isn't hovered-
6)
[*] This is a really cool way to make your text pop out. It flickers when someone hovers over it!! So go on, copy the code i've given you. [*]
5)
< B onmouseout="this.style.color = 'black';" onmouseover="this.style.color = '#EEC88A';" align="justify">
text goes here< /div >
This is the calculator!! It's really cool but i can't copy the code 'cause it's too long and takes up the whole page!!! try it out though xx
This has two parts so after you've copied the first one copy this code too.
< script >
/*
Gradual-Highlight Image Script II-
By J. Mark Birenbaum (birenbau@ugrad.cs.ualberta.ca)
Permission granted to Dynamicdrive.com to feature script in archive
For full source to script, visit http://dynamicdrive.com
*/
nereidFadeObjects = new Object();
nereidFadeTimers = new Object();
/* object - image to be faded (actual object, not name);
* destop - destination transparency level (ie 80, for mostly solid)
* rate - time in milliseconds between trasparency changes (best under 100)
* delta - amount of change each time (ie 5, for 5% change in transparency)
*/
function nereidFade(object, destOp, rate, delta){
if (!document.all)
return
if (object != "[object]"){ //do this so I can take a string too
setTimeout("nereidFade("+object+","+destOp+","+rate+","+delta+")",0);
return;
}
clearTimeout(nereidFadeTimers[object.sourceIndex]);
diff = destOp-object.filters.alpha.opacity;
direction = 1;
if (object.filters.alpha.opacity > destOp){
direction = -1;
}
delta=Math.min(direction*diff,delta);
object.filters.alpha.opacity+=direction*delta;
if (object.filters.alpha.opacity != destOp){
nereidFadeObjects[object.sourceIndex]=object;
nereidFadeTimers[object.sourceIndex]=setTimeout("nereidFade(nereidFadeObjects["+object.sourceIndex+"],"+destOp+","+rate+","+delta+")",rate);
}
}
< /script >
8)
For a cool pop up thing like this copy the code onto your page!
< BODY >
< CENTER >
< !-- This script and many more are available free online at -->
< A href="" onMouseover="alert('Do you like my site?');
alert('I bet you do!');
alert('I think you should e-mail me and say how much you love my site!!');
alert('Yeah you better do it before i get mad!!!');
document.bgColor='#EE82EE';
document.fgColor='black';
window.location.href='mailto:clareywarey@secmore.com?subject=I love it!!';">Hover< /A >
< /CENTER >
< P > < CENTER >
< /CENTER > < P >
< !-- Script Size: 0.50 KB --> < /BODY >
9)
To get a cool countdown like this, copy the code in the box and don't forget to take out the spaces!!!!
< form name="abcdef" >
Only
< input type="text" name="b" size=2 value="" > months,
< input type="text" name="c" size=2 value="" > days,
< input type="text" name="d" size=2 value="" > hours,
< input type="text" name="e" size=2 value="" > minutes, and
< input type="text" name="f" size=2 value="" > seconds
left until the new year!!!
< /form >
< script language="JavaScript" >
< !--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com
var Temp2;
var timerID = null;
var timerRunning = false;
var timerID = null;
var timerRunning = false;
function stopclock () {
if(timerRunning)
clearTimeout(timerID);
timerRunning = false;
}
function startclock () {
stopclock();
showtime();
}
function showtime() {
now = new Date();
var CurHour = now.getHours();
var CurMinute = now.getMinutes();
var CurMonth = now.getMonth();
var CurDate = now.getDate();
var CurSecond = now.getSeconds();
now = null;
var Hourleft = 23 - CurHour
var Minuteleft = 59 - CurMinute
var Secondleft = 59 - CurSecond
var Monthleft = 11 - CurMonth
var Dateleft = 31 - CurDate
document.abcdef.b.value = Monthleft
document.abcdef.c.value = Dateleft
document.abcdef.d.value = Hourleft
document.abcdef.e.value = Minuteleft
document.abcdef.f.value = Secondleft
timerID = setTimeout("showtime()",1000);
timerRunning = true;
}
startclock();
// -- >
< /script >
Well I hope my codes help you with your websites!!! If you need any more help leave a message in the shoutbox with your site addy or email address so i can help u out there. Byeeee!