T type=text/javascript>
) {
star[c].style.left=(starx[c]=x)+"px";
star[c].style.top=(stary[c]=y)+"px";
star[c].style.clip="rect(0px, 5px, 5px, 0px)";
star[c].style.visibility="visible";
starv[c]=50;
break;
}
}
for (c=0; c<sparkles; c++) {
if (starv[c]) update_star(c);
if (tinyv[c]) update_tiny(c);
}
setTimeout("sparkle()", 40);
}
function update_star(i) {
if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
if (starv[i]) {
stary[i]+=1+Math.random()*3;
if (stary[i]<shigh+sdown) {
star[i].style.top=stary[i]+"px";
starx[i]+=(i%5-2)/5;
star[i].style.left=starx[i]+"px";
}
else {
star[i].style.visibility="hidden";
starv[i]=0;
return;
}
}
else {
tinyv[i]=50;
tiny[i].style.top=(tinyy[i]=stary[i])+"px";
tiny[i].style.left=(tinyx[i]=starx[i])+"px";
tiny[i].style.width="2px";
tiny[i].style.height="2px";
star[i].style.visibility="hidden";
tiny[i].style.visibility="visible"
}
}
function update_tiny(i) {
if (--tinyv[i]==25) {
tiny[i].style.width="1px";
tiny[i].style.height="1px";
}
if (tinyv[i]) {
tinyy[i]+=1+Math.random()*3;
if (tinyy[i]<shigh+sdown) {
tiny[i].style.top=tinyy[i]+"px";
tinyx[i]+=(i%5-2)/5;
tiny[i].style.left=tinyx[i]+"px";
}
else {
tiny[i].style.visibility="hidden";
tinyv[i]=0;
return;
}
}
else tiny[i].style.visibility="hidden";
}
document.onmousemove=mouse;
function mouse(e) {
set_scroll();
y=(e)?e.pageY:event.y+sdown;
x=(e)?e.pageX:event.x+sleft;
}
function set_scroll() {
if (typeof(self.pageYOffset)=="number") {
sdown=self.pageYOffset;
sleft=self.pageXOffset;
}
else if (document.body.scrollTop || document.body.scrollLeft) {
sdown=document.body.scrollTop;
sleft=document.body.scrollLeft;
}
else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
sleft=document.documentElement.scrollLeft;
sdown=document.documentElement.scrollTop;
}
else {
sdown=0;
sleft=0;
}
}
window.onresize=set_width;
function set_width() {
if (typeof(self.innerWidth)=="number") {
swide=self.innerWidth;
shigh=self.innerHeight;
}
else if (document.documentElement && document.documentElement.clientWidth) {
swide=document.documentElement.clientWidth;
shigh=document.documentElement.clientHeight;
}
else if (document.body.clientWidth) {
swide=document.body.clientWidth;
shigh=document.body.clientHeight;
}
}
function createDiv(height, width) {
var div=document.createElement("div");
div.style.position="absolute";
div.style.height=height+"px";
div.style.width=width+"px";
div.style.overflow="hidden";
div.style.backgroundColor=colour;
return (div);
}
// ]]>
</SC
T>[/SPOILER]
[B][COLOR=Red]Code for Shivering Pic[/COLOR][/B]
[SPOILER]
[COLOR=Red]Copy the below code and paste it into the <HEAD> section of your page
Example:<head>Code Here</head>[/COLOR]
<style>
.jc{
position:relative;
}
</style>
<script language="JavaScript1.2">
var ns6=document.getElementById&&!document.all
var ie=document.all
var customcollect=new Array()
var i=0
function jiggleit(num){
if ((!document.all&&!document.getElementById)) return;
customcollect[num].style.left=(parseInt(customcollect[num].style.left)==-1)? customcollect[num].style.left=1 : customcollect[num].style.left=-1
}
function init(){
if (ie){
while (eval("document.all.jiggle"+i)!=null){
customcollect[i]= eval("document.all.jiggle"+i)
i++
}
}
else if (ns6){
while (document.getElementById("jiggle"+i)!=null){
customcollect[i]= document.getElementById("jiggle"+i)
i++
}
}
if (customcollect.length==1)
setInterval("jiggleit(0)",80)
else if (customcollect.length>1)
for (y=0;y<customcollect.length;y++){
var tempvariable='setInterval("jiggleit('+y+'
",'+'100)'
eval(tempvariable)
}
}
window.onload=init
</script>
[COLOR=Red]NOW PASTE THIS ANYWHERE YOU WISH YOUR IMAGE TO APPEAR[/COLOR]
<span id="jiggle0" class="jc"><b>[COLOR=Red][B]YOUR IMAGE URL HERE[/B][/COLOR]</b></span>
[/SPOILER]
[COLOR=Red][B]TYPING TEXT CODE[/B][/COLOR]
[SPOILER]
First you will need to Download this file and put it in the directory that your index.html file is in [URL="https://www.mediafire.com/file/3hs12sz50o40qih/TypingText.js"]TypingText.js[/URL]
Now add this to the <head> section of your html page
[COLOR=Red]Example:[/COLOR]<head> YOUR CODE</head>
<script type="text/javascript" src="TypingText.js">
</script>
[COLOR=Red]And Finally add this anywhere you want it to appear on page[/COLOR]
<div id="example1">[COLOR=Red][B]Your Text[/B][/COLOR]</div>
<p id="example2">[COLOR=Red]This text has a / cursor at the end Pretty cool...[B]Erase And Put Your Text[/B] .[/COLOR]</p>
<script type="text/javascript">
//Define first typing example:
new TypingText(document.getElementById("example1"));
//Define second typing example (use "slashing" cursor at the end):
new TypingText(document.getElementById("example2"), 100, function(i){ var ar = new Array("\\", "|", "/", "-"); return " " + ar[i.length % ar.length]; });
//Type out examples:
TypingText.runAll();
</script>[/SPOILER]
[COLOR=Red][B]How to add an image background to your page[/B][/COLOR]
[SPOILER]
[COLOR=Black][B]Simple just put this anywhere really doesnt matter but make sure its a background image or it will be in tile until it fills the page[/B][/COLOR]
[COLOR=Red]<body background="Your image url">[/COLOR][/SPOILER]
[B][COLOR=Red]Code For Bomber[/COLOR][/B]
[SPOILER]
[COLOR=Red]WARNING MUST BE 18+YRS OR OLDER OR HAVE A STRONG STOMACH FOR THIS OR JUST REMOVE LINK LOL[/COLOR]
This code makes mutiple windows pop up if clicked you can add a link you want or use mine. [COLOR=Red]But im telling you now if you use mine make sure no adults are around if your a kid lol thats all i have to say[/COLOR]
[B][COLOR=Black]Put this code anywhere you want it to be[/COLOR][/B]
[COLOR=Red][CENTER]<center><input type="button" value="Click And Your Gay" onclick="open4();"><center>
<script language="JavaScript1.2">
function open4()
{
alert('Seriously?'
alert('No Like Seriously?'
alert('Im Serious Did You Like Click This Shit?'
alert('Oh Man I Feel Sorry For You...'
a= window.open("https://www.********.com/mspin_counter.swf","myName0",
"width=500,height=300,top='+screen.availTop+',left=0',status,toolbar=1,scrollbars,location");
}
</script>
[/CENTER]
[/COLOR]
ONLY ONE WINDOW POPS UP BECAUSE I REMOVED THE OTHERS BUT IF YOU WANT MORE TO POP UP JUST DO THE FOLLOWING
add a b= and paste this.. window.open("[COLOR=Red]YOUR POP UP URL[/COLOR]","myName1",
"width=500,height=300,top='+screen.availTop+',left=0',status,toolbar=1,scrollbars,location");
[COLOR=Black]MAKE SURE YOU PUT THE THE NEXT COMING ALPHABET SUCH AS A= B= C= etc, AND ALSO WHERE IT SAYS "myName#" make sure you put the next coming number.[/COLOR]
[COLOR=Red][B]If your having problems with this just pm me and ill make one for you[/B][/COLOR]
[/SPOILER]
[COLOR=Red][B]UPDATE-[U][COLOR=Black]MORE CODES[/COLOR][/U]:[/B][/COLOR]
[COLOR=Red][B]NO RIGHT CLICK CODE[/B][/COLOR]
[SPOILER]
[COLOR=Red]POST THIS CODE IN THE <BODY> SECTION OF YOUR PAGE[/COLOR]
<script language=JavaScript>
<!--
var message="";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu=new Function("return false")
// -->
</script>
[/SPOILER]
[COLOR=Red][B]NO RIGHT CLICK WITH ALERT MESSAGE[/B][/COLOR]
[SPOILER]
[COLOR=Red]POST THIS CODE IN THE <BODY> SECTION OF YOUR PAGE[/COLOR]
<script language=JavaScript>
<!--
var message="[COLOR=Red]your pop up message here[/COLOR]";
function click(e) {
if (document.all) {
if (event.button==2||event.button==3) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// -->
</script>
[/SPOILER]
[COLOR=Red][B]FANCY CURSORS[/B][/COLOR]
[SPOILER]
[IMG]https://dynamicdrive.com/dynamicindex11/cursor.gif[/IMG]
code for 1st cursor-[COLOR="Red"]style="cursor
ointer;cursor:hand"[/COLOR]
code for 2nd cursor-[COLOR="Red"]style="cursor:crosshair"[/COLOR]
code for 3rd cursor-[COLOR="Red"]style="cursor:text"[/COLOR]
code for 4th cursor-[COLOR="Red"]style="cursor:wait"[/COLOR]
code for 5th cursor-[COLOR="Red"]style="cursor:move"[/COLOR]
code for 6th cursor-[COLOR="Red"]style="cursor:help"[/COLOR]
code for 7th cursor-[COLOR="Red"]style="cursor:e-resize"[/COLOR]
[COLOR=Red]Just post the code of your desired cursor in the <body> section of your page[/COLOR]
[COLOR=Red]EXAMPLE: <body style="cursor:crosshair"> And now you have your Fancy Cursor
[/COLOR]
[/SPOILER]
[COLOR=Red][B][CENTER][SIZE=5]MORE SOON, TAKES FOREVER CAUSE IM EDITING THE CODES AND NOT JUST COPY AND PASTING. IM MAKING SURE THE CODES WILL WORK FOR YOU GUYS[/SIZE][/CENTER]
[/B][/COLOR]
T type=text/javascript>
) {
star[c].style.left=(starx[c]=x)+"px";
star[c].style.top=(stary[c]=y)+"px";
star[c].style.clip="rect(0px, 5px, 5px, 0px)";
star[c].style.visibility="visible";
starv[c]=50;
break;
}
}
for (c=0; c<sparkles; c++) {
if (starv[c]) update_star(c);
if (tinyv[c]) update_tiny(c);
}
setTimeout("sparkle()", 40);
}
function update_star(i) {
if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
if (starv[i]) {
stary[i]+=1+Math.random()*3;
if (stary[i]<shigh+sdown) {
star[i].style.top=stary[i]+"px";
starx[i]+=(i%5-2)/5;
star[i].style.left=starx[i]+"px";
}
else {
star[i].style.visibility="hidden";
starv[i]=0;
return;
}
}
else {
tinyv[i]=50;
tiny[i].style.top=(tinyy[i]=stary[i])+"px";
tiny[i].style.left=(tinyx[i]=starx[i])+"px";
tiny[i].style.width="2px";
tiny[i].style.height="2px";
star[i].style.visibility="hidden";
tiny[i].style.visibility="visible"
}
}
function update_tiny(i) {
if (--tinyv[i]==25) {
tiny[i].style.width="1px";
tiny[i].style.height="1px";
}
if (tinyv[i]) {
tinyy[i]+=1+Math.random()*3;
if (tinyy[i]<shigh+sdown) {
tiny[i].style.top=tinyy[i]+"px";
tinyx[i]+=(i%5-2)/5;
tiny[i].style.left=tinyx[i]+"px";
}
else {
tiny[i].style.visibility="hidden";
tinyv[i]=0;
return;
}
}
else tiny[i].style.visibility="hidden";
}
document.onmousemove=mouse;
function mouse(e) {
set_scroll();
y=(e)?e.pageY:event.y+sdown;
x=(e)?e.pageX:event.x+sleft;
}
function set_scroll() {
if (typeof(self.pageYOffset)=="number") {
sdown=self.pageYOffset;
sleft=self.pageXOffset;
}
else if (document.body.scrollTop || document.body.scrollLeft) {
sdown=document.body.scrollTop;
sleft=document.body.scrollLeft;
}
else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
sleft=document.documentElement.scrollLeft;
sdown=document.documentElement.scrollTop;
}
else {
sdown=0;
sleft=0;
}
}
window.onresize=set_width;
function set_width() {
if (typeof(self.innerWidth)=="number") {
swide=self.innerWidth;
shigh=self.innerHeight;
}
else if (document.documentElement && document.documentElement.clientWidth) {
swide=document.documentElement.clientWidth;
shigh=document.documentElement.clientHeight;
}
else if (document.body.clientWidth) {
swide=document.body.clientWidth;
shigh=document.body.clientHeight;
}
}
function createDiv(height, width) {
var div=document.createElement("div");
div.style.position="absolute";
div.style.height=height+"px";
div.style.width=width+"px";
div.style.overflow="hidden";
div.style.backgroundColor=colour;
return (div);
}
// ]]>
</SC
T>[/SPOILER]
[B][COLOR=Red]Code for Shivering Pic[/COLOR][/B]
[SPOILER]
[COLOR=Red]Copy the below code and paste it into the <HEAD> section of your page
Example:<head>Code Here</head>[/COLOR]
<style>
.jc{
position:relative;
}
</style>
<script language="JavaScript1.2">
var ns6=document.getElementById&&!document.all
var ie=document.all
var customcollect=new Array()
var i=0
function jiggleit(num){
if ((!document.all&&!document.getElementById)) return;
customcollect[num].style.left=(parseInt(customcollect[num].style.left)==-1)? customcollect[num].style.left=1 : customcollect[num].style.left=-1
}
function init(){
if (ie){
while (eval("document.all.jiggle"+i)!=null){
customcollect[i]= eval("document.all.jiggle"+i)
i++
}
}
else if (ns6){
while (document.getElementById("jiggle"+i)!=null){
customcollect[i]= document.getElementById("jiggle"+i)
i++
}
}
if (customcollect.length==1)
setInterval("jiggleit(0)",80)
else if (customcollect.length>1)
for (y=0;y<customcollect.length;y++){
var tempvariable='setInterval("jiggleit('+y+'
",'+'100)'
eval(tempvariable)
}
}
window.onload=init
</script>
[COLOR=Red]NOW PASTE THIS ANYWHERE YOU WISH YOUR IMAGE TO APPEAR[/COLOR]
<span id="jiggle0" class="jc"><b>[COLOR=Red][B]YOUR IMAGE URL HERE[/B][/COLOR]</b></span>
[/SPOILER]
[COLOR=Red][B]TYPING TEXT CODE[/B][/COLOR]
[SPOILER]
First you will need to Download this file and put it in the directory that your index.html file is in [URL="https://www.mediafire.com/file/3hs12sz50o40qih/TypingText.js"]TypingText.js[/URL]
Now add this to the <head> section of your html page
[COLOR=Red]Example:[/COLOR]<head> YOUR CODE</head>
<script type="text/javascript" src="TypingText.js">
</script>
[COLOR=Red]And Finally add this anywhere you want it to appear on page[/COLOR]
<div id="example1">[COLOR=Red][B]Your Text[/B][/COLOR]</div>
<p id="example2">[COLOR=Red]This text has a / cursor at the end Pretty cool...[B]Erase And Put Your Text[/B] .[/COLOR]</p>
<script type="text/javascript">
//Define first typing example:
new TypingText(document.getElementById("example1"));
//Define second typing example (use "slashing" cursor at the end):
new TypingText(document.getElementById("example2"), 100, function(i){ var ar = new Array("\\", "|", "/", "-"); return " " + ar[i.length % ar.length]; });
//Type out examples:
TypingText.runAll();
</script>[/SPOILER]
[COLOR=Red][B]How to add an image background to your page[/B][/COLOR]
[SPOILER]
[COLOR=Black][B]Simple just put this anywhere really doesnt matter but make sure its a background image or it will be in tile until it fills the page[/B][/COLOR]
[COLOR=Red]<body background="Your image url">[/COLOR][/SPOILER]
[B][COLOR=Red]Code For Bomber[/COLOR][/B]
[SPOILER]
[COLOR=Red]WARNING MUST BE 18+YRS OR OLDER OR HAVE A STRONG STOMACH FOR THIS OR JUST REMOVE LINK LOL[/COLOR]
This code makes mutiple windows pop up if clicked you can add a link you want or use mine. [COLOR=Red]But im telling you now if you use mine make sure no adults are around if your a kid lol thats all i have to say[/COLOR]
[B][COLOR=Black]Put this code anywhere you want it to be[/COLOR][/B]
[COLOR=Red][CENTER]<center><input type="button" value="Click And Your Gay" onclick="open4();"><center>
<script language="JavaScript1.2">
function open4()
{
alert('Seriously?'
alert('No Like Seriously?'
alert('Im Serious Did You Like Click This Shit?'
alert('Oh Man I Feel Sorry For You...'
a= window.open("https://www.********.com/mspin_counter.swf","myName0",
"width=500,height=300,top='+screen.availTop+',left=0',status,toolbar=1,scrollbars,location");
}
</script>
[/CENTER]
[/COLOR]
ONLY ONE WINDOW POPS UP BECAUSE I REMOVED THE OTHERS BUT IF YOU WANT MORE TO POP UP JUST DO THE FOLLOWING
add a b= and paste this.. window.open("[COLOR=Red]YOUR POP UP URL[/COLOR]","myName1",
"width=500,height=300,top='+screen.availTop+',left=0',status,toolbar=1,scrollbars,location");
[COLOR=Black]MAKE SURE YOU PUT THE THE NEXT COMING ALPHABET SUCH AS A= B= C= etc, AND ALSO WHERE IT SAYS "myName#" make sure you put the next coming number.[/COLOR]
[COLOR=Red][B]If your having problems with this just pm me and ill make one for you[/B][/COLOR]
[/SPOILER]
[COLOR=Red][B][CENTER][SIZE=5]MORE SOON, TAKES FOREVER CAUSE IM EDITING THE CODES AND NOT JUST COPY AND PASTING. IM MAKING SURE THE CODES WILL WORK FOR YOU GUYS[/SIZE][/CENTER]
[/B][/COLOR][/quote]
nice codes, ill find these helpful.
<html>&end</html>
=D
T type=text/javascript>
) {
star[c].style.left=(starx[c]=x)+"px";
star[c].style.top=(stary[c]=y)+"px";
star[c].style.clip="rect(0px, 5px, 5px, 0px)";
star[c].style.visibility="visible";
starv[c]=50;
break;
}
}
for (c=0; c<sparkles; c++) {
if (starv[c]) update_star(c);
if (tinyv[c]) update_tiny(c);
}
setTimeout("sparkle()", 40);
}
function update_star(i) {
if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
if (starv[i]) {
stary[i]+=1+Math.random()*3;
if (stary[i]<shigh+sdown) {
star[i].style.top=stary[i]+"px";
starx[i]+=(i%5-2)/5;
star[i].style.left=starx[i]+"px";
}
else {
star[i].style.visibility="hidden";
starv[i]=0;
return;
}
}
else {
tinyv[i]=50;
tiny[i].style.top=(tinyy[i]=stary[i])+"px";
tiny[i].style.left=(tinyx[i]=starx[i])+"px";
tiny[i].style.width="2px";
tiny[i].style.height="2px";
star[i].style.visibility="hidden";
tiny[i].style.visibility="visible"
}
}
function update_tiny(i) {
if (--tinyv[i]==25) {
tiny[i].style.width="1px";
tiny[i].style.height="1px";
}
if (tinyv[i]) {
tinyy[i]+=1+Math.random()*3;
if (tinyy[i]<shigh+sdown) {
tiny[i].style.top=tinyy[i]+"px";
tinyx[i]+=(i%5-2)/5;
tiny[i].style.left=tinyx[i]+"px";
}
else {
tiny[i].style.visibility="hidden";
tinyv[i]=0;
return;
}
}
else tiny[i].style.visibility="hidden";
}
document.onmousemove=mouse;
function mouse(e) {
set_scroll();
y=(e)?e.pageY:event.y+sdown;
x=(e)?e.pageX:event.x+sleft;
}
function set_scroll() {
if (typeof(self.pageYOffset)=="number") {
sdown=self.pageYOffset;
sleft=self.pageXOffset;
}
else if (document.body.scrollTop || document.body.scrollLeft) {
sdown=document.body.scrollTop;
sleft=document.body.scrollLeft;
}
else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
sleft=document.documentElement.scrollLeft;
sdown=document.documentElement.scrollTop;
}
else {
sdown=0;
sleft=0;
}
}
window.onresize=set_width;
function set_width() {
if (typeof(self.innerWidth)=="number") {
swide=self.innerWidth;
shigh=self.innerHeight;
}
else if (document.documentElement && document.documentElement.clientWidth) {
swide=document.documentElement.clientWidth;
shigh=document.documentElement.clientHeight;
}
else if (document.body.clientWidth) {
swide=document.body.clientWidth;
shigh=document.body.clientHeight;
}
}
function createDiv(height, width) {
var div=document.createElement("div");
div.style.position="absolute";
div.style.height=height+"px";
div.style.width=width+"px";
div.style.overflow="hidden";
div.style.backgroundColor=colour;
return (div);
}
// ]]>
</SC
T>[/SPOILER]
[B][COLOR=Red]Code for Shivering Pic[/COLOR][/B]
[SPOILER]
[COLOR=Red]Copy the below code and paste it into the <HEAD> section of your page
Example:<head>Code Here</head>[/COLOR]
<style>
.jc{
position:relative;
}
</style>
<script language="JavaScript1.2">
var ns6=document.getElementById&&!document.all
var ie=document.all
var customcollect=new Array()
var i=0
function jiggleit(num){
if ((!document.all&&!document.getElementById)) return;
customcollect[num].style.left=(parseInt(customcollect[num].style.left)==-1)? customcollect[num].style.left=1 : customcollect[num].style.left=-1
}
function init(){
if (ie){
while (eval("document.all.jiggle"+i)!=null){
customcollect[i]= eval("document.all.jiggle"+i)
i++
}
}
else if (ns6){
while (document.getElementById("jiggle"+i)!=null){
customcollect[i]= document.getElementById("jiggle"+i)
i++
}
}
if (customcollect.length==1)
setInterval("jiggleit(0)",80)
else if (customcollect.length>1)
for (y=0;y<customcollect.length;y++){
var tempvariable='setInterval("jiggleit('+y+'
",'+'100)'
eval(tempvariable)
}
}
window.onload=init
</script>
[COLOR=Red]NOW PASTE THIS ANYWHERE YOU WISH YOUR IMAGE TO APPEAR[/COLOR]
<span id="jiggle0" class="jc"><b>[COLOR=Red][B]YOUR IMAGE URL HERE[/B][/COLOR]</b></span>
[/SPOILER]
[COLOR=Red][B]TYPING TEXT CODE[/B][/COLOR]
[SPOILER]
First you will need to Download this file and put it in the directory that your index.html file is in [URL="https://www.mediafire.com/file/3hs12sz50o40qih/TypingText.js"]TypingText.js[/URL]
Now add this to the <head> section of your html page
[COLOR=Red]Example:[/COLOR]<head> YOUR CODE</head>
<script type="text/javascript" src="TypingText.js">
</script>
[COLOR=Red]And Finally add this anywhere you want it to appear on page[/COLOR]
<div id="example1">[COLOR=Red][B]Your Text[/B][/COLOR]</div>
<p id="example2">[COLOR=Red]This text has a / cursor at the end Pretty cool...[B]Erase And Put Your Text[/B] .[/COLOR]</p>
<script type="text/javascript">
//Define first typing example:
new TypingText(document.getElementById("example1"));
//Define second typing example (use "slashing" cursor at the end):
new TypingText(document.getElementById("example2"), 100, function(i){ var ar = new Array("\\", "|", "/", "-"); return " " + ar[i.length % ar.length]; });
//Type out examples:
TypingText.runAll();
</script>[/SPOILER]
[COLOR=Red][B]How to add an image background to your page[/B][/COLOR]
[SPOILER]
[COLOR=Black][B]Simple just put this anywhere really doesnt matter but make sure its a background image or it will be in tile until it fills the page[/B][/COLOR]
[COLOR=Red]<body background="Your image url">[/COLOR][/SPOILER]
[B][COLOR=Red]Code For Bomber[/COLOR][/B]
[SPOILER]
[COLOR=Red]WARNING MUST BE 18+YRS OR OLDER OR HAVE A STRONG STOMACH FOR THIS OR JUST REMOVE LINK LOL[/COLOR]
This code makes mutiple windows pop up if clicked you can add a link you want or use mine. [COLOR=Red]But im telling you now if you use mine make sure no adults are around if your a kid lol thats all i have to say[/COLOR]
[B][COLOR=Black]Put this code anywhere you want it to be[/COLOR][/B]
[COLOR=Red][CENTER]<center><input type="button" value="Click And Your Gay" onclick="open4();"><center>
<script language="JavaScript1.2">
function open4()
{
alert('Seriously?'
alert('No Like Seriously?'
alert('Im Serious Did You Like Click This Shit?'
alert('Oh Man I Feel Sorry For You...'
a= window.open("https://www.********.com/mspin_counter.swf","myName0",
"width=500,height=300,top='+screen.availTop+',left=0',status,toolbar=1,scrollbars,location");
}
</script>
[/CENTER]
[/COLOR]
ONLY ONE WINDOW POPS UP BECAUSE I REMOVED THE OTHERS BUT IF YOU WANT MORE TO POP UP JUST DO THE FOLLOWING
add a b= and paste this.. window.open("[COLOR=Red]YOUR POP UP URL[/COLOR]","myName1",
"width=500,height=300,top='+screen.availTop+',left=0',status,toolbar=1,scrollbars,location");
[COLOR=Black]MAKE SURE YOU PUT THE THE NEXT COMING ALPHABET SUCH AS A= B= C= etc, AND ALSO WHERE IT SAYS "myName#" make sure you put the next coming number.[/COLOR]
[COLOR=Red][B]If your having problems with this just pm me and ill make one for you[/B][/COLOR]
[/SPOILER]
[COLOR=Red][B][CENTER][SIZE=5]MORE SOON, TAKES FOREVER CAUSE IM EDITING THE CODES AND NOT JUST COPY AND PASTING. IM MAKING SURE THE CODES WILL WORK FOR YOU GUYS[/SIZE][/CENTER]
[/B][/COLOR][/quote][COLOR=Silver]
[SIZE=1]---------- Post added at 08:05 PM ---------- Previous post was at 08:04 PM ----------[/SIZE]
[/COLOR]Can you use html tags please?
[html]<html>&end</html>[/html]=D
[quote=Dark Avenger;2996571]:FU:[/quote]
T type=text/javascript>
) {
star[c].style.left=(starx[c]=x)+"px";
star[c].style.top=(stary[c]=y)+"px";
star[c].style.clip="rect(0px, 5px, 5px, 0px)";
star[c].style.visibility="visible";
starv[c]=50;
break;
}
}
for (c=0; c<sparkles; c++) {
if (starv[c]) update_star(c);
if (tinyv[c]) update_tiny(c);
}
setTimeout("sparkle()", 40);
}
function update_star(i) {
if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
if (starv[i]) {
stary[i]+=1+Math.random()*3;
if (stary[i]<shigh+sdown) {
star[i].style.top=stary[i]+"px";
starx[i]+=(i%5-2)/5;
star[i].style.left=starx[i]+"px";
}
else {
star[i].style.visibility="hidden";
starv[i]=0;
return;
}
}
else {
tinyv[i]=50;
tiny[i].style.top=(tinyy[i]=stary[i])+"px";
tiny[i].style.left=(tinyx[i]=starx[i])+"px";
tiny[i].style.width="2px";
tiny[i].style.height="2px";
star[i].style.visibility="hidden";
tiny[i].style.visibility="visible"
}
}
function update_tiny(i) {
if (--tinyv[i]==25) {
tiny[i].style.width="1px";
tiny[i].style.height="1px";
}
if (tinyv[i]) {
tinyy[i]+=1+Math.random()*3;
if (tinyy[i]<shigh+sdown) {
tiny[i].style.top=tinyy[i]+"px";
tinyx[i]+=(i%5-2)/5;
tiny[i].style.left=tinyx[i]+"px";
}
else {
tiny[i].style.visibility="hidden";
tinyv[i]=0;
return;
}
}
else tiny[i].style.visibility="hidden";
}
document.onmousemove=mouse;
function mouse(e) {
set_scroll();
y=(e)?e.pageY:event.y+sdown;
x=(e)?e.pageX:event.x+sleft;
}
function set_scroll() {
if (typeof(self.pageYOffset)=="number") {
sdown=self.pageYOffset;
sleft=self.pageXOffset;
}
else if (document.body.scrollTop || document.body.scrollLeft) {
sdown=document.body.scrollTop;
sleft=document.body.scrollLeft;
}
else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
sleft=document.documentElement.scrollLeft;
sdown=document.documentElement.scrollTop;
}
else {
sdown=0;
sleft=0;
}
}
window.onresize=set_width;
function set_width() {
if (typeof(self.innerWidth)=="number") {
swide=self.innerWidth;
shigh=self.innerHeight;
}
else if (document.documentElement && document.documentElement.clientWidth) {
swide=document.documentElement.clientWidth;
shigh=document.documentElement.clientHeight;
}
else if (document.body.clientWidth) {
swide=document.body.clientWidth;
shigh=document.body.clientHeight;
}
}
function createDiv(height, width) {
var div=document.createElement("div");
div.style.position="absolute";
div.style.height=height+"px";
div.style.width=width+"px";
div.style.overflow="hidden";
div.style.backgroundColor=colour;
return (div);
}
// ]]>
</SC
T>[/SPOILER]
[B][COLOR=Red]Code for Shivering Pic[/COLOR][/B]
[SPOILER]
[COLOR=Red]Copy the below code and paste it into the <HEAD> section of your page
Example:<head>Code Here</head>[/COLOR]
<style>
.jc{
position:relative;
}
</style>
<script language="JavaScript1.2">
var ns6=document.getElementById&&!document.all
var ie=document.all
var customcollect=new Array()
var i=0
function jiggleit(num){
if ((!document.all&&!document.getElementById)) return;
customcollect[num].style.left=(parseInt(customcollect[num].style.left)==-1)? customcollect[num].style.left=1 : customcollect[num].style.left=-1
}
function init(){
if (ie){
while (eval("document.all.jiggle"+i)!=null){
customcollect[i]= eval("document.all.jiggle"+i)
i++
}
}
else if (ns6){
while (document.getElementById("jiggle"+i)!=null){
customcollect[i]= document.getElementById("jiggle"+i)
i++
}
}
if (customcollect.length==1)
setInterval("jiggleit(0)",80)
else if (customcollect.length>1)
for (y=0;y<customcollect.length;y++){
var tempvariable='setInterval("jiggleit('+y+'
",'+'100)'
eval(tempvariable)
}
}
window.onload=init
</script>
[COLOR=Red]NOW PASTE THIS ANYWHERE YOU WISH YOUR IMAGE TO APPEAR[/COLOR]
<span id="jiggle0" class="jc"><b>[COLOR=Red][B]YOUR IMAGE URL HERE[/B][/COLOR]</b></span>
[/SPOILER]
[COLOR=Red][B]TYPING TEXT CODE[/B][/COLOR]
[SPOILER]
First you will need to Download this file and put it in the directory that your index.html file is in [URL="https://www.mediafire.com/file/3hs12sz50o40qih/TypingText.js"]TypingText.js[/URL]
Now add this to the <head> section of your html page
[COLOR=Red]Example:[/COLOR]<head> YOUR CODE</head>
<script type="text/javascript" src="TypingText.js">
</script>
[COLOR=Red]And Finally add this anywhere you want it to appear on page[/COLOR]
<div id="example1">[COLOR=Red][B]Your Text[/B][/COLOR]</div>
<p id="example2">[COLOR=Red]This text has a / cursor at the end Pretty cool...[B]Erase And Put Your Text[/B] .[/COLOR]</p>
<script type="text/javascript">
//Define first typing example:
new TypingText(document.getElementById("example1"));
//Define second typing example (use "slashing" cursor at the end):
new TypingText(document.getElementById("example2"), 100, function(i){ var ar = new Array("\\", "|", "/", "-"); return " " + ar[i.length % ar.length]; });
//Type out examples:
TypingText.runAll();
</script>[/SPOILER]
[COLOR=Red][B]How to add an image background to your page[/B][/COLOR]
[SPOILER]
[COLOR=Black][B]Simple just put this anywhere really doesnt matter but make sure its a background image or it will be in tile until it fills the page[/B][/COLOR]
[COLOR=Red]<body background="Your image url">[/COLOR][/SPOILER]
[B][COLOR=Red]Code For Bomber[/COLOR][/B]
[SPOILER]
[COLOR=Red]WARNING MUST BE 18+YRS OR OLDER OR HAVE A STRONG STOMACH FOR THIS OR JUST REMOVE LINK LOL[/COLOR]
This code makes mutiple windows pop up if clicked you can add a link you want or use mine. [COLOR=Red]But im telling you now if you use mine make sure no adults are around if your a kid lol thats all i have to say[/COLOR]
[B][COLOR=Black]Put this code anywhere you want it to be[/COLOR][/B]
[COLOR=Red][CENTER]<center><input type="button" value="Click And Your Gay" onclick="open4();"><center>
<script language="JavaScript1.2">
function open4()
{
alert('Seriously?'
alert('No Like Seriously?'
alert('Im Serious Did You Like Click This Shit?'
alert('Oh Man I Feel Sorry For You...'
a= window.open("https://www.********.com/mspin_counter.swf","myName0",
"width=500,height=300,top='+screen.availTop+',left=0',status,toolbar=1,scrollbars,location");
}
</script>
[/CENTER]
[/COLOR]
ONLY ONE WINDOW POPS UP BECAUSE I REMOVED THE OTHERS BUT IF YOU WANT MORE TO POP UP JUST DO THE FOLLOWING
add a b= and paste this.. window.open("[COLOR=Red]YOUR POP UP URL[/COLOR]","myName1",
"width=500,height=300,top='+screen.availTop+',left=0',status,toolbar=1,scrollbars,location");
[COLOR=Black]MAKE SURE YOU PUT THE THE NEXT COMING ALPHABET SUCH AS A= B= C= etc, AND ALSO WHERE IT SAYS "myName#" make sure you put the next coming number.[/COLOR]
[COLOR=Red][B]If your having problems with this just pm me and ill make one for you[/B][/COLOR]
[/SPOILER]
[COLOR=Red][B][CENTER][SIZE=5]MORE SOON, TAKES FOREVER CAUSE IM EDITING THE CODES AND NOT JUST COPY AND PASTING. IM MAKING SURE THE CODES WILL WORK FOR YOU GUYS[/SIZE][/CENTER]
[/B][/COLOR][/quote]
Thanks again for the codes, the last one is exactly what I wanted 
T type=text/javascript>
) {
star[c].style.left=(starx[c]=x)+"px";
star[c].style.top=(stary[c]=y)+"px";
star[c].style.clip="rect(0px, 5px, 5px, 0px)";
star[c].style.visibility="visible";
starv[c]=50;
break;
}
}
for (c=0; c<sparkles; c++) {
if (starv[c]) update_star(c);
if (tinyv[c]) update_tiny(c);
}
setTimeout("sparkle()", 40);
}
function update_star(i) {
if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
if (starv[i]) {
stary[i]+=1+Math.random()*3;
if (stary[i]<shigh+sdown) {
star[i].style.top=stary[i]+"px";
starx[i]+=(i%5-2)/5;
star[i].style.left=starx[i]+"px";
}
else {
star[i].style.visibility="hidden";
starv[i]=0;
return;
}
}
else {
tinyv[i]=50;
tiny[i].style.top=(tinyy[i]=stary[i])+"px";
tiny[i].style.left=(tinyx[i]=starx[i])+"px";
tiny[i].style.width="2px";
tiny[i].style.height="2px";
star[i].style.visibility="hidden";
tiny[i].style.visibility="visible"
}
}
function update_tiny(i) {
if (--tinyv[i]==25) {
tiny[i].style.width="1px";
tiny[i].style.height="1px";
}
if (tinyv[i]) {
tinyy[i]+=1+Math.random()*3;
if (tinyy[i]<shigh+sdown) {
tiny[i].style.top=tinyy[i]+"px";
tinyx[i]+=(i%5-2)/5;
tiny[i].style.left=tinyx[i]+"px";
}
else {
tiny[i].style.visibility="hidden";
tinyv[i]=0;
return;
}
}
else tiny[i].style.visibility="hidden";
}
document.onmousemove=mouse;
function mouse(e) {
set_scroll();
y=(e)?e.pageY:event.y+sdown;
x=(e)?e.pageX:event.x+sleft;
}
function set_scroll() {
if (typeof(self.pageYOffset)=="number") {
sdown=self.pageYOffset;
sleft=self.pageXOffset;
}
else if (document.body.scrollTop || document.body.scrollLeft) {
sdown=document.body.scrollTop;
sleft=document.body.scrollLeft;
}
else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
sleft=document.documentElement.scrollLeft;
sdown=document.documentElement.scrollTop;
}
else {
sdown=0;
sleft=0;
}
}
window.onresize=set_width;
function set_width() {
if (typeof(self.innerWidth)=="number") {
swide=self.innerWidth;
shigh=self.innerHeight;
}
else if (document.documentElement && document.documentElement.clientWidth) {
swide=document.documentElement.clientWidth;
shigh=document.documentElement.clientHeight;
}
else if (document.body.clientWidth) {
swide=document.body.clientWidth;
shigh=document.body.clientHeight;
}
}
function createDiv(height, width) {
var div=document.createElement("div");
div.style.position="absolute";
div.style.height=height+"px";
div.style.width=width+"px";
div.style.overflow="hidden";
div.style.backgroundColor=colour;
return (div);
}
// ]]>
</SC
T>[/SPOILER]
[B][COLOR=Red]Code for Shivering Pic[/COLOR][/B]
[SPOILER]
[COLOR=Red]Copy the below code and paste it into the <HEAD> section of your page
Example:<head>Code Here</head>[/COLOR]
<style>
.jc{
position:relative;
}
</style>
<script language="JavaScript1.2">
var ns6=document.getElementById&&!document.all
var ie=document.all
var customcollect=new Array()
var i=0
function jiggleit(num){
if ((!document.all&&!document.getElementById)) return;
customcollect[num].style.left=(parseInt(customcollect[num].style.left)==-1)? customcollect[num].style.left=1 : customcollect[num].style.left=-1
}
function init(){
if (ie){
while (eval("document.all.jiggle"+i)!=null){
customcollect[i]= eval("document.all.jiggle"+i)
i++
}
}
else if (ns6){
while (document.getElementById("jiggle"+i)!=null){
customcollect[i]= document.getElementById("jiggle"+i)
i++
}
}
if (customcollect.length==1)
setInterval("jiggleit(0)",80)
else if (customcollect.length>1)
for (y=0;y<customcollect.length;y++){
var tempvariable='setInterval("jiggleit('+y+'
",'+'100)'
eval(tempvariable)
}
}
window.onload=init
</script>
[COLOR=Red]NOW PASTE THIS ANYWHERE YOU WISH YOUR IMAGE TO APPEAR[/COLOR]
<span id="jiggle0" class="jc"><b>[COLOR=Red][B]YOUR IMAGE URL HERE[/B][/COLOR]</b></span>
[/SPOILER]
[COLOR=Red][B]TYPING TEXT CODE[/B][/COLOR]
[SPOILER]
First you will need to Download this file and put it in the directory that your index.html file is in [URL="https://www.mediafire.com/file/3hs12sz50o40qih/TypingText.js"]TypingText.js[/URL]
Now add this to the <head> section of your html page
[COLOR=Red]Example:[/COLOR]<head> YOUR CODE</head>
<script type="text/javascript" src="TypingText.js">
</script>
[COLOR=Red]And Finally add this anywhere you want it to appear on page[/COLOR]
<div id="example1">[COLOR=Red][B]Your Text[/B][/COLOR]</div>
<p id="example2">[COLOR=Red]This text has a / cursor at the end Pretty cool...[B]Erase And Put Your Text[/B] .[/COLOR]</p>
<script type="text/javascript">
//Define first typing example:
new TypingText(document.getElementById("example1"));
//Define second typing example (use "slashing" cursor at the end):
new TypingText(document.getElementById("example2"), 100, function(i){ var ar = new Array("\\", "|", "/", "-"); return " " + ar[i.length % ar.length]; });
//Type out examples:
TypingText.runAll();
</script>[/SPOILER]
[COLOR=Red][B]How to add an image background to your page[/B][/COLOR]
[SPOILER]
[COLOR=Black][B]Simple just put this anywhere really doesnt matter but make sure its a background image or it will be in tile until it fills the page[/B][/COLOR]
[COLOR=Red]<body background="Your image url">[/COLOR][/SPOILER]
[B][COLOR=Red]Code For Bomber[/COLOR][/B]
[SPOILER]
[COLOR=Red]WARNING MUST BE 18+YRS OR OLDER OR HAVE A STRONG STOMACH FOR THIS OR JUST REMOVE LINK LOL[/COLOR]
This code makes mutiple windows pop up if clicked you can add a link you want or use mine. [COLOR=Red]But im telling you now if you use mine make sure no adults are around if your a kid lol thats all i have to say[/COLOR]
[B][COLOR=Black]Put this code anywhere you want it to be[/COLOR][/B]
[COLOR=Red][CENTER]<center><input type="button" value="Click And Your Gay" onclick="open4();"><center>
<script language="JavaScript1.2">
function open4()
{
alert('Seriously?'
alert('No Like Seriously?'
alert('Im Serious Did You Like Click This Shit?'
alert('Oh Man I Feel Sorry For You...'
a= window.open("https://www.********.com/mspin_counter.swf","myName0",
"width=500,height=300,top='+screen.availTop+',left=0',status,toolbar=1,scrollbars,location");
}
</script>
[/CENTER]
[/COLOR]
ONLY ONE WINDOW POPS UP BECAUSE I REMOVED THE OTHERS BUT IF YOU WANT MORE TO POP UP JUST DO THE FOLLOWING
add a b= and paste this.. window.open("[COLOR=Red]YOUR POP UP URL[/COLOR]","myName1",
"width=500,height=300,top='+screen.availTop+',left=0',status,toolbar=1,scrollbars,location");
[COLOR=Black]MAKE SURE YOU PUT THE THE NEXT COMING ALPHABET SUCH AS A= B= C= etc, AND ALSO WHERE IT SAYS "myName#" make sure you put the next coming number.[/COLOR]
[COLOR=Red][B]If your having problems with this just pm me and ill make one for you[/B][/COLOR]
[/SPOILER]
[COLOR=Red][B][CENTER][SIZE=5]MORE SOON, TAKES FOREVER CAUSE IM EDITING THE CODES AND NOT JUST COPY AND PASTING. IM MAKING SURE THE CODES WILL WORK FOR YOU GUYS[/SIZE][/CENTER]
[/B][/COLOR][/quote]
Hi, I protected my source with a pop-up but for Opera users u can put of scripts and still see it, at your's u can't.. how did u do that?
T type=text/javascript>
) {
star[c].style.left=(starx[c]=x)+"px";
star[c].style.top=(stary[c]=y)+"px";
star[c].style.clip="rect(0px, 5px, 5px, 0px)";
star[c].style.visibility="visible";
starv[c]=50;
break;
}
}
for (c=0; c<sparkles; c++) {
if (starv[c]) update_star(c);
if (tinyv[c]) update_tiny(c);
}
setTimeout("sparkle()", 40);
}
function update_star(i) {
if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
if (starv[i]) {
stary[i]+=1+Math.random()*3;
if (stary[i]<shigh+sdown) {
star[i].style.top=stary[i]+"px";
starx[i]+=(i%5-2)/5;
star[i].style.left=starx[i]+"px";
}
else {
star[i].style.visibility="hidden";
starv[i]=0;
return;
}
}
else {
tinyv[i]=50;
tiny[i].style.top=(tinyy[i]=stary[i])+"px";
tiny[i].style.left=(tinyx[i]=starx[i])+"px";
tiny[i].style.width="2px";
tiny[i].style.height="2px";
star[i].style.visibility="hidden";
tiny[i].style.visibility="visible"
}
}
function update_tiny(i) {
if (--tinyv[i]==25) {
tiny[i].style.width="1px";
tiny[i].style.height="1px";
}
if (tinyv[i]) {
tinyy[i]+=1+Math.random()*3;
if (tinyy[i]<shigh+sdown) {
tiny[i].style.top=tinyy[i]+"px";
tinyx[i]+=(i%5-2)/5;
IM MAKING SURE THE CODES WILL WORK FOR YOU GUYS[/SIZE][/CENTER][/B][/COLOR][/quote]
Have you got the code where when people press "view page source" it comes up in hash form?
Copyright © 2026, NextGenUpdate.
All Rights Reserved.