Google
 

Go Back   NackVision > Website Related > Friendster Overlay

Friendster Overlay Codes and tutorials on overlay

Reply
 
Thread Tools
Old 05-22-2006, 06:14 AM   #1
geeuel
Junior Member
 
geeuel's Avatar
 
Join Date: Apr 2006
Posts: 15
ang cute mu talaga kuya...
(Offline)
 
Reply With Quote
Old 05-22-2006, 06:22 AM   #2
YeoJRocKZ_12
Member
 
YeoJRocKZ_12's Avatar
 
Join Date: Apr 2006
Location: SA BAHAY NAMIn..
Posts: 51
Send a message via Yahoo to YeoJRocKZ_12
(-_-)



CUTE>??MUKA BA KONG PUPPY??HEHEHEHE...

PEACEOUT!!!
(Offline)
 
Reply With Quote
Old 05-22-2006, 06:30 AM   #3
xxkornelxx
Senior Member
 
xxkornelxx's Avatar
 
Join Date: Mar 2006
Location: in the trashcan
Posts: 539
Send a message via Yahoo to xxkornelxx
NICE! Thanks for sharing stuff bro. . .
__________________
(Offline)
 
Reply With Quote
Old 05-22-2006, 06:35 AM   #4
YeoJRocKZ_12
Member
 
YeoJRocKZ_12's Avatar
 
Join Date: Apr 2006
Location: SA BAHAY NAMIn..
Posts: 51
Send a message via Yahoo to YeoJRocKZ_12
NO PROBLEM BRO'..
(Offline)
 
Reply With Quote
Old 05-23-2006, 02:24 AM   #5
rhobbs
Junior Member
 
Join Date: May 2006
Posts: 1
boss!

bossssssssss!!! daelordZ!
(Offline)
 
Reply With Quote
Old 05-23-2006, 03:12 AM   #6
keanujaphil
Junior Member
 
Join Date: May 2006
Posts: 2
pwede po ba yan kahit d naka overlay prof??
(Offline)
 
Reply With Quote
Old 05-23-2006, 03:24 AM   #7
narcolepsyweed
Junior Member
 
Join Date: Apr 2006
Posts: 6
Originally Posted by keanujaphil
pwede po ba yan kahit d naka overlay prof??
Unfortunately yes... i think pang overlay coz of the <head> tag
__________________
(Offline)
 
Reply With Quote
Old 05-23-2006, 03:33 AM   #8
princeofdark
Junior Member
 
princeofdark's Avatar
 
Join Date: May 2006
Location: k.s.a
Posts: 15
Send a message via MSN to princeofdark Send a message via Yahoo to princeofdark Send a message via Skype™ to princeofdark
Smile tinkerbell magic sparkle mouse

Originally Posted by YeoJRocKZ_12


STEP 1: Copy and paste the code below so that it sits between the <head> and </head> tags at the top of your web-page:

<script type="text/javascript">
// <![CDATA[
var colour="#f0f";
var sparkles=50;
/****************************
* Tinkerbell Magic Sparkle *
* (c) 2005 mf2fm web-design *
* http://www.mf2fm.com/rv *
* DON'T EDIT BELOW THIS BOX *
****************************/
var x=ox=400;
var y=oy=300;
var swide=800;
var shigh=600;
var sleft=sdown=0;
var tiny=new Array();
var star=new Array();
var starv=new Array();
var starx=new Array();
var stary=new Array();
var tinyx=new Array();
var tinyy=new Array();
var tinyv=new Array();
window.onload=function() { if (document.getElementById) {
var i, rats, rlef, rdow;
for (var i=0; i<sparkles; i++) {
var rats=createDiv(3, 3);
rats.style.visibility="hidden";
document.body.appendChild(tiny[i]=rats);
starv[i]=0;
tinyv[i]=0;
var rats=createDiv(5, 5);
rats.style.backgroundColor="transparent";
rats.style.visibility="hidden";
var rlef=createDiv(1, 5);
var rdow=createDiv(5, 1);
rats.appendChild(rlef);
rats.appendChild(rdow);
rlef.style.top="2px";
rlef.style.left="0px";
rdow.style.top="0px";
rdow.style.left="2px";
document.body.appendChild(star[i]=rats);
}
set_width();
sparkle();
}}
function sparkle() {
var c;
if (x!=ox || y!=oy) {
ox=x;
oy=y;
for (c=0; c<sparkles; c++) if (!starv[c]) {
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);
}
// ]]>
</script>
STEP 2: If you want to change the colour of the fairy dust, change the colour at the start of the script you just copied to the setting you require.
THAT'S IT When your page loads and you move your mouse, magic sparkles (or fairy dust, whichever you prefer) appear, just like Tinkerbell in Peter Pan!

CLICK THIS LINK FOR PREVIEW:



PEACEOUT!!!
wala bang kulay panlalake or style gaya ng matrix? at paano bang palitan ng kulay at style yan? at saan i paste yan?
thanx!
(Offline)
 
Reply With Quote
Old 05-23-2006, 06:26 AM   #9
stingerjay
Junior Member
 
Join Date: May 2006
Posts: 1
halou

pede ba sa friendster toh? saan ko ba e save?
(Offline)
 
Reply With Quote
Old 05-23-2006, 06:33 AM   #10
YeoJRocKZ_12
Member
 
YeoJRocKZ_12's Avatar
 
Join Date: Apr 2006
Location: SA BAHAY NAMIn..
Posts: 51
Send a message via Yahoo to YeoJRocKZ_12
.


IF YOURE USING THE OVERLAY GENERATOR PWEDE..

PEACEOUT!!!
(Offline)
 
Reply With Quote
Reply


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -7. The time now is 01:04 AM.