Google
 

Go Back   NackVision > Website Related > Friendster Overlay

Friendster Overlay Codes and tutorials on overlay

Reply
 
Thread Tools
Old 05-27-2006, 12:19 AM   #1
dashling
Senior Member
 
dashling's Avatar
 
Join Date: May 2006
Location: secrEt
Posts: 488
Talking SUPER CODES 4 OVERLAY USERS...

E2 STAR WARPER FOR OVERLAY PROFILE LNG POW PRA TO DUN SA MGA TANONG NG TANONG ....... ( sa overlay ba yan?) ahhhhhhhh............................ D KO LNG ALAM KUNG NA POST NA TO D2....
I ONLY WANT TO SHARE................ ................ DI AKO ANKINERO NG CODE ....


OK.. LETS START....

HERE'S THE CODE :

<SCRIPT language="JavaScript">
// This script to be inserted after <BODY> tag \\
// Star Track - with Warp Speed \\
// This script and many more from :
// http://rainbow.arch.scriptmania.com
//---- Make Changes Here ----\\
numb_s=20 // - number of stars (we have 20).
speed_s=3 // - movement speed of stars
//---- DO NOT Change Below this line ----\\
//This and others free scripts at - http://rainbow.arch.scriptmania.com
//The script works both with Internet Explorer (4-6) and with Netscape (4,6).
ns=document.layers?1:0
ie=document.all?1:0
ns6=document.getElementById&&!document.all?1:0
function moveSlide(name,sLeft, sTop) {
if (ns) {document.layers[name].top=sTop;document.layers[name].left=sLeft}
if (ie) {document.all[name].style.top=sTop;document.all[name].style.left=sLeft}
if (ns6) {document.getElementById(name).style.top=sTop;document.getElementById(name).style.left=sLeft}
}
function sizeSlide(name,sWdh, sHgt) {
if (ns){document.layers[name].clip.width=sWdh; document.layers[name].clip.height=sHgt}
if (ie){document.all[name].style.width=sWdh; document.all[name].style.height=sHgt}
if (ns6){document.getElementById(name).style.width=sWdh; document.getElementById(name).style.height=sHgt}
}
function positions(){
hei_scr=(ie)?window.document.body.clientHeight:window.innerHeight
wid_scr=(ie)?window.document.body.clientWidth:window.innerWidth
y_scrl=(ie)?document.body.scrollTop:window.pageYOffset
x_scrl=(ie)?document.body.scrollLeft:window.pageXOffset
}
posX=new Array()
posY=new Array()
posR=new Array()
radi=new Array()
tx=""
positions()
if (ns)
{
tx=tx+"<layer z-Index=100 left="+(wid_scr-35)+" top="+(hei_scr-35)+" ></layer>"
}
else
{
document.write("<div>.</div>")
}
for (i=0; i<numb_s;i++) 
{ 
posY[i]=hei_scr/2
posX[i]=wid_scr/2
posR[i]=Math.random()*6.283
radi[i]=0
if (ns)
{
tx+="<layer z-Index=0 name=star_"+i+" left=0 top=0 width=1 height=1 bgColor=#ffffff></layer>"
}
else
{
document.write("<div id=star_"+i+" style='z-index:0; position:absolute; left:0;top:0;width:1;height:1;background:#ffffff'><img width=1 height=1></div>")
}
if(ns){document.write (tx);tx=""}
}
function go_stars(){
positions()
rad_max=Math.sqrt(wid_scr*wid_scr+hei_scr*hei_scr)/2
for (i=0; i < numb_s;i++){
rad=Math.sqrt(Math.pow((posY[i]-hei_scr/2),2)+Math.pow((posX[i]-wid_scr/2),2))/rad_max*4+1
posY[i]+=Math.round(Math.sin(posR[i])*rad*speed_s);
posX[i]+=Math.round(Math.cos(posR[i])*rad*speed_s);
if ((posX[i] > wid_scr-rad*2) || (posY[i] < 0 ) || (posY[i] > hei_scr-rad*2) || (posX[i] < 0))
{
posY[i]=hei_scr/2
posX[i]=wid_scr/2
posR[i]=Math.random()*6.283
sizeSlide("star_"+i,1,1)
moveSlide("star_"+i,posX[i]+x_scrl,posY[i]+y_scrl)
}
else{
if(Math.floor(rad)!=radi[i]){sizeSlide("star_"+i,rad,rad);radi[i]=rad}
moveSlide("star_"+i,posX[i]+x_scrl,posY[i]+y_scrl)
} 
}
}
starSpeed=setInterval('go_stars()',15);
// end script
 
function ch_speed(new_speed){clearInterval(starSpeed); starSpeed=setInterval('go_stars()',new_speed);}
</SCRIPT>
<layer z-Index=2>
<div style="position: relative">









ETO PO UNG PREVIEW =


http://rainbow.arch.scriptmania.com/...startrack.html <<<<<
__________________
[ Bleach ] [ I dont Love You ]

Last edited by dashling; 06-01-2006 at 10:41 PM. Reason: WALA..................
(Offline)
 
Reply With Quote
Old 05-27-2006, 12:26 AM   #2
dashling
Senior Member
 
dashling's Avatar
 
Join Date: May 2006
Location: secrEt
Posts: 488
E2 SNOW FALL .................. DI KO RIN ALAM KUNG NA POST NA TO DITO ...

http://www.rainbow.arch.scriptmania....snow_fall.html

yan ang preview....................





<!--Simply copy and paste into <BODY>
Just above the </BODY> tag. -->
<SCRIPT type="text/javascript">
/*
Snow Fall Java Script
Visit http://rainbow.arch.scriptmania.com/scripts/
for this script and many more
*/
 
//Pre-loads your image/s below
//Configure below - change URL path to the snow image
 
grphcs=new Array(6)
Image0=new Image();
Image0.src=grphcs[0]="snow1.gif";
Image1=new Image();
Image1.src=grphcs[1]="snow2.gif"
Image2=new Image();
Image2.src=grphcs[2]="snow3.gif"
Image3=new Image();
Image3.src=grphcs[3]="snow4.gif"
Image4=new Image();
Image4.src=grphcs[4]="snow5.gif"
Image5=new Image();
Image5.src=grphcs[5]="snow6.gif"
 
//Smoothness depends on image file size, 
//the smaller the size the more you can use!
 
// Configure below - change number of snow to render
Amount=15; 
 
Ypos=new Array();
Xpos=new Array();
Speed=new Array();
Step=new Array();
Cstep=new Array();
ns=(document.layers)?1:0;
ns6=(document.getElementById&&!document.all)?1:0;
 
if (ns){
    for (i = 0; i < Amount; i++){
        var P=Math.floor(Math.random()*grphcs.length);
        rndPic=grphcs[P];
        document.write("<LAYER NAME='sn"+i+"' LEFT=0 TOP=0><img src="+rndPic+"></LAYER>");
    }
}
else{
    document.write('<div style="position:absolute;top:0px;left:0px"><div style="position:relative">');
    for (i = 0; i < Amount; i++){
        var P=Math.floor(Math.random()*grphcs.length);
        rndPic=grphcs[P];
        document.write('<img id="si'+i+'" src="'+rndPic+'" style="position:absolute;top:0px;left:0px">');
    }
    document.write('</div></div>');
}
WinHeight=(ns||ns6)?window.innerHeight:window.document.body.clientHeight;
WinWidth=(ns||ns6)?window.innerWidth-70:window.document.body.clientWidth;
for (i=0; i < Amount; i++){
    Ypos[i] = Math.round(Math.random()*WinHeight);
    Xpos[i] = Math.round(Math.random()*WinWidth);
    Speed[i]= Math.random()*5+3;
    Cstep[i]=0;
    Step[i]=Math.random()*0.1+0.05;
}
function fall(){
    var WinHeight=(ns||ns6)?window.innerHeight:window.document.body.clientHeight;
    var WinWidth=(ns||ns6)?window.innerWidth-70:window.document.body.clientWidth;
    var hscrll=(ns||ns6)?window.pageYOffset:document.body.scrollTop;
    var wscrll=(ns||ns6)?window.pageXOffset:document.body.scrollLeft;
    for (i=0; i < Amount; i++){
        sy = Speed[i]*Math.sin(90*Math.PI/180);
        sx = Speed[i]*Math.cos(Cstep[i]);
        Ypos[i]+=sy;
        Xpos[i]+=sx;
        if (Ypos[i] > WinHeight){
            Ypos[i]=-60;
            Xpos[i]=Math.round(Math.random()*WinWidth);
            Speed[i]=Math.random()*5+3;
        }
        if (ns){
            document.layers['sn'+i].left=Xpos[i];
            document.layers['sn'+i].top=Ypos[i]+hscrll;
        }
        else if (ns6){
            document.getElementById("si"+i).style.left=Math.min(WinWidth,Xpos[i]);
            document.getElementById("si"+i).style.top=Ypos[i]+hscrll;
        }
        else{
            eval("document.all.si"+i).style.left=Xpos[i];
            eval("document.all.si"+i).style.top=Ypos[i]+hscrll;
        }
        Cstep[i]+=Step[i];
    }
    setTimeout('fall()',115);
}
window.onload=fall
//-->
</SCRIPT>
<p><font face="arial" size="-2">Free JavaScript from </font><br><font face="arial, helvetica" size="-2"><a href="http://rainbow.arch.scriptmania.com/scripts/">Rainbow Arch</a></font></p>
__________________
[ Bleach ] [ I dont Love You ]

Last edited by dashling; 05-27-2006 at 12:36 AM.
(Offline)
 
Reply With Quote
Old 05-27-2006, 02:31 AM   #3
dashling
Senior Member
 
dashling's Avatar
 
Join Date: May 2006
Location: secrEt
Posts: 488
w0w lang may gusto ........................
__________________
[ Bleach ] [ I dont Love You ]
(Offline)
 
Reply With Quote
Old 05-27-2006, 04:30 AM   #4
xxkornelxx
Senior Member
 
xxkornelxx's Avatar
 
Join Date: Mar 2006
Location: in the trashcan
Posts: 539
Send a message via Yahoo to xxkornelxx
thanks for sharing and for the effort. ^_^
__________________

Last edited by xxkornelxx; 05-28-2006 at 05:19 PM.
(Offline)
 
Reply With Quote
Old 05-27-2006, 05:30 AM   #5
?????
Junior Member
 
?????'s Avatar
 
Join Date: Mar 2006
Posts: 6
nice one dashling!! buti ka pa d ka nangaangkin ng codes!!! d katulad ng iba jan na post ng post pero sa tweakers at forums lng nman kumukuha pra sumikat!!
__________________

I may be just a kid but i can be better than you
(Offline)
 
Reply With Quote
Old 05-27-2006, 06:31 PM   #6
dashling
Senior Member
 
dashling's Avatar
 
Join Date: May 2006
Location: secrEt
Posts: 488
^^thx...........
__________________
[ Bleach ] [ I dont Love You ]
(Offline)
 
Reply With Quote
Old 05-28-2006, 03:49 AM   #7
arjaypogi99
Senior Member
 
arjaypogi99's Avatar
 
Join Date: May 2006
Location: Galacticus!
Posts: 468
Send a message via Yahoo to arjaypogi99
maybe im just kid™.Ï.
(Offline)
 
Reply With Quote
Old 05-29-2006, 01:00 AM   #8
dashling
Senior Member
 
dashling's Avatar
 
Join Date: May 2006
Location: secrEt
Posts: 488
.................................................. ....................
__________________
[ Bleach ] [ I dont Love You ]
(Offline)
 
Reply With Quote
Old 06-01-2006, 06:05 AM   #9
daeryljansen
Junior Member
 
Join Date: May 2006
Posts: 1
ang ganda astig po thx
(Offline)
 
Reply With Quote
Old 06-01-2006, 10:16 PM   #10
dashling
Senior Member
 
dashling's Avatar
 
Join Date: May 2006
Location: secrEt
Posts: 488
DIS ABLE ENTER KEY........


E2......SNA MATRIPAN NYU .........

Description: Is the user pressing the "Enter" key in the middle of your form causing inadvertent and incomplete form submissions? This script disable the "Enter" key when pressed inside chosen fields of your choice (most commonly <input type="text"> fields). Moreover, it then advances the cursor to the next field within the form. Very useful.




Step 1: Add the below script to the <HEAD> section of your page:

<script type="text/javascript">

/***********************************************
* Disable "Enter" key in Form script- By Nurul Fadilah(nurul@REMOVETHISvolmedia.com)
* This notice must stay intact for use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

function handleEnter (field, event) {
var keyCode = event.keyCode ? event.keyCode : event.which ? event.which : event.charCode;
if (keyCode == 13) {
var i;
for (i = 0; i < field.form.elements.length; i++)
if (field == field.form.elements[i])
break;
i = (i + 1) % field.form.elements.length;
field.form.elements[i].focus();
return false;
}
else
return true;
}

</script>


Step 2: Now, inside the form fields you wish to disable the "Enter" key and advance focus to the next field instead, simply add the below "onkeypress" event handler inside its tag as follows:

<form>
<input type="text" onkeypress="return handleEnter(this, event)"><br>
<input type="text" onkeypress="return handleEnter(this, event)"><br>
<textarea>Some text</textarea>
</form>

:Note that you should not add this event handler inside <TEXTAREA>s, as it by default will jump to the next line within itself when "Enter" is pressed.
__________________
[ Bleach ] [ I dont Love You ]
(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 08:42 PM.