• ARCHIVES 
  • » just copy the code below... then PASTE it on ur JS xtention file [spoiler]//Bubble Script re-edited by Agent.eedirA //Based on code by Altan d.o.o. (snow@altan.hr) var no = 15; // image number or f

Pages: 1

just copy the code below... then PASTE it on ur JS xtention file [spoiler]//Bubble Script re-edited by Agent.eedirA //Based on code by Altan d.o.o. (snow@altan.hr) var no = 15; // image number or f

aridee
» n00b
FTalk Level: zero
31
0
1969-12-31

just copy the code below... then PASTE it on ur JS xtention file [spoiler]//Bubble Script re-edited by Agent.eedirA //Based on code by Altan d.o.o. (snow@altan.hr) var no = 15; // image number or f

just copy the code below... then PASTE it on ur JS xtention file [spoiler]//Bubble Script re-edited by Agent.eedirA //Based on code by Altan d.o.o. (snow@altan.hr) var no = 15; // image number or falling rate var speed = 2; // the lower the number the faster the image moves var snow = new Array(); snow[0] = "[b]IMAGE_URL_OF_UR_BUBBLE[/b]" snow[1] = "[b]IMAGE_URL_OF_UR_BUBBLE[/b]" snow[2] = "[b]IMAGE_URL_OF_UR_BUBBLE[/b]" var ns4up = (document.layers) ? 1 : 0; // browser sniffer var ie4up = (document.all) ? 1 : 0; var ns6up = (document.getElementById&&!document.all) ? 1 : 0; var dx, xp, yp; // coordinate and position variables var am, stx, sty; // amplitude and step variables var i, doc_width = 800, doc_height = 1800; if (ns4up||ns6up) { doc_width = self.innerWidth; doc_height = self.innerHeight; } else if (ie4up) { doc_width = document.body.clientWidth; doc_height = document.body.clientHeight; } dx = new Array(); xp = new Array(); yp = new Array(); am = new Array(); stx = new Array(); sty = new Array(); j = 0; for (i = 0; i < no; ++ i) { dx[i] = 0; // set coordinate variables xp[i] = Math.random()*(doc_width-50); // set position variables yp[i] = Math.random()*doc_height; am[i] = Math.random()*20; // set amplitude variables stx[i] = 0.02 + Math.random()/10; // set step variables sty[i] = 0.7 + Math.random(); // set step variables if (ns4up) { // set layers if (i == 0) { document.write("<layer name=\"dot"+ i +"\" left=\"15\" top=\"15\" visibility=\"show\"><img src=\""+ snow[j] + "\" border=\"0\"></layer>"); } else { document.write("<layer name=\"dot"+ i +"\" left=\"15\" top=\"15\" visibility=\"show\"><img src=\""+ snow[j] + "\" border=\"0\"></layer>"); } } else if (ie4up||ns6up) { if (i == 0) { document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"VISIBILITY: visible; TOP: 15px; LEFT: 15px; width:1;\"><img src=\"" + snow[j] + "\" border=\"0\"></div>"); } else { document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"VISIBILITY: visible; TOP: 15px; LEFT: 15px; width:1;\"><img src=\"" + snow[j] + "\" border=\"0\"></div>"); } } if (j == (snow.length-1)) { j = 0; } else { j += 1; } } function snowNS() { // Netscape main animation function for (i = 0; i < no; ++ i) { // iterate for every dot yp[i] -= sty[i]; if (yp[i] < -50) { xp[i] = Math.random()*(doc_width-am[i]-30); yp[i] = doc_height; stx[i] = 0.02 + Math.random()/10; sty[i] = 0.7 + Math.random(); doc_width = self.innerWidth; doc_height = self.innerHeight; } dx[i] += stx[i]; document.layers["dot"+i].top = yp[i]+pageYOffset; document.layers["dot"+i].left = xp[i] + am[i]*Math.sin(dx[i]); } setTimeout("snowNS()", speed); } function snowIE_NS6() { // IE main animation function for (i = 0; i < no; ++ i) { // iterate for every dot yp[i] -= sty[i]; if (yp[i] < -50) { xp[i] = Math.random()*(doc_width-am[i]-30); yp[i] = doc_height; stx[i] = 0.02 + Math.random()/10; sty[i] = 0.7 + Math.random(); doc_width = ns6up?window.innerWidth-5:document.body.clientWidth; doc_height = ns6up?window.innerHeight-5:document.body.clientHeight; } dx[i] += stx[i]; if (ie4up){ document.all["dot"+i].style.pixelTop = yp[i]+document.body.scrollTop; document.all["dot"+i].style.pixelLeft = xp[i] + am[i]*Math.sin(dx[i]); } else if (ns6up){ document.getElementById("dot"+i).style.top=yp[i]+pageYOffset; document.getElementById("dot"+i).style.left=xp[i] + am[i]*Math.sin(dx[i]); } } setTimeout("snowIE_NS6()", speed); } if (ns4up) { snowNS(); } else if (ie4up||ns6up) { snowIE_NS6(); }[/spoiler] Preview:[url]http://www.geocities.com/aridee2002//BUBBLEPREV.html[/url] for FF browser im using ths "PNG" bubble images: [img]http://www.geocities.com/agent.eedira/Aorb1.png[/img] [img]http://www.geocities.com/agent.eedira/Aorb2.png[/img] [img]http://www.geocities.com/agent.eedira/Aorb3.png[/img]

Last edited by aridee (2008-10-04 21:11:46)

tap13
» FTalkElite
FTalk Level: zero
5873
0
1969-12-31

Re: just copy the code below... then PASTE it on ur JS xtention file [spoiler]//Bubble Script re-edited by Agent.eedirA //Based on code by Altan d.o.o. (snow@altan.hr) var no = 15; // image number or f

nice :thumbsup: :)
pulasara
» FTalkAddict
FTalk Level: zero
574
0
1969-12-31

Re: just copy the code below... then PASTE it on ur JS xtention file [spoiler]//Bubble Script re-edited by Agent.eedirA //Based on code by Altan d.o.o. (snow@altan.hr) var no = 15; // image number or f

wow nice! i like this trick thanks for share :D :thumbsup:
princess.nill:D
» n00b
FTalk Level: zero
4
0
1969-12-31

Re: just copy the code below... then PASTE it on ur JS xtention file [spoiler]//Bubble Script re-edited by Agent.eedirA //Based on code by Altan d.o.o. (snow@altan.hr) var no = 15; // image number or f

hmmmmmmmmm .. lolx..
exceed
» Banned
FTalk Level: zero
47
0
1969-12-31

Re: just copy the code below... then PASTE it on ur JS xtention file [spoiler]//Bubble Script re-edited by Agent.eedirA //Based on code by Altan d.o.o. (snow@altan.hr) var no = 15; // image number or f

i guess its better if you will provide the image of the bubble that you are saying..coz its useless right? hence... this trick posted is incomplete
lalalalalalala
» FTalkAddict
FTalk Level: zero
482
0
1969-12-31

Re: just copy the code below... then PASTE it on ur JS xtention file [spoiler]//Bubble Script re-edited by Agent.eedirA //Based on code by Altan d.o.o. (snow@altan.hr) var no = 15; // image number or f

Nice... I like this one. :)
asakapanoobz
» n00b
FTalk Level: zero
96
0
1969-12-31

Re: just copy the code below... then PASTE it on ur JS xtention file [spoiler]//Bubble Script re-edited by Agent.eedirA //Based on code by Altan d.o.o. (snow@altan.hr) var no = 15; // image number or f

not working :retard:
cupu
» FTalkAddict
FTalk Level: zero
519
0
1969-12-31

Re: just copy the code below... then PASTE it on ur JS xtention file [spoiler]//Bubble Script re-edited by Agent.eedirA //Based on code by Altan d.o.o. (snow@altan.hr) var no = 15; // image number or f

nice trickk broo... good job .... thank for share :D:D:D
robin182
» FTalkAddict
FTalk Level: zero
471
0
1969-12-31

Re: just copy the code below... then PASTE it on ur JS xtention file [spoiler]//Bubble Script re-edited by Agent.eedirA //Based on code by Altan d.o.o. (snow@altan.hr) var no = 15; // image number or f

thx 4 share,,, i have script lika this,, but this script can't load in may profile.. please help me.. my script.. http://robin182.net63.net/buble.js preview.. http://robin182.net63.net/buble.html im sorry my english is so bad.. :):):)

Last edited by robin182 (2008-10-04 15:20:07)

rodruth
» FTalker
FTalk Level: zero
106
0
1969-12-31

Re: just copy the code below... then PASTE it on ur JS xtention file [spoiler]//Bubble Script re-edited by Agent.eedirA //Based on code by Altan d.o.o. (snow@altan.hr) var no = 15; // image number or f

nice trick.........
hideki04
» n00b
FTalk Level: zero
42
0
1969-12-31

Re: just copy the code below... then PASTE it on ur JS xtention file [spoiler]//Bubble Script re-edited by Agent.eedirA //Based on code by Altan d.o.o. (snow@altan.hr) var no = 15; // image number or f

Very nice trick.Can i use any image rather than bubbles?
kacang`z
» FTalkWhiz
FTalk Level: zero
Some FTalkers ♥ My Threads!
2662
0
1969-12-31

Re: just copy the code below... then PASTE it on ur JS xtention file [spoiler]//Bubble Script re-edited by Agent.eedirA //Based on code by Altan d.o.o. (snow@altan.hr) var no = 15; // image number or f

nice your trick thanks for sharing.. :thumbsup: :thumbsup:
leeshe
» n00b
FTalk Level: zero
2
0
1969-12-31

Re: just copy the code below... then PASTE it on ur JS xtention file [spoiler]//Bubble Script re-edited by Agent.eedirA //Based on code by Altan d.o.o. (snow@altan.hr) var no = 15; // image number or f

wer can i find the js extension file?????????????????
aridee
» n00b
FTalk Level: zero
31
0
1969-12-31

Re: just copy the code below... then PASTE it on ur JS xtention file [spoiler]//Bubble Script re-edited by Agent.eedirA //Based on code by Altan d.o.o. (snow@altan.hr) var no = 15; // image number or f

[quote=leeshe]wer can i find the js extension file?????????????????[/quote] jst go here :thumbsdown: http://theftalk.com/t22027-Making-Extensions-Files.-%5BFriendster-Editing%5D.html :D
rinze
» n00b
FTalk Level: zero
2
0
1969-12-31

Re: just copy the code below... then PASTE it on ur JS xtention file [spoiler]//Bubble Script re-edited by Agent.eedirA //Based on code by Altan d.o.o. (snow@altan.hr) var no = 15; // image number or f

whoa.. cool:thumbsup:
gratitude1
» FTalkElite
FTalk Level: zero
4368
0
1969-12-31

Re: just copy the code below... then PASTE it on ur JS xtention file [spoiler]//Bubble Script re-edited by Agent.eedirA //Based on code by Altan d.o.o. (snow@altan.hr) var no = 15; // image number or f

[b]kewl thnx fer sharin'[/b]
robin182
» FTalkAddict
FTalk Level: zero
471
0
1969-12-31

Re: just copy the code below... then PASTE it on ur JS xtention file [spoiler]//Bubble Script re-edited by Agent.eedirA //Based on code by Altan d.o.o. (snow@altan.hr) var no = 15; // image number or f

Hi bro.. postingan I that previously why not in replied? Aq please put to profile and could go completely... I for a long time has had script this but could not use and now has been successful.. Thank you already share trick this.. Liked to meet you... :D:D:D
shakur
» n00b
FTalk Level: zero
2
0
1969-12-31

Re: just copy the code below... then PASTE it on ur JS xtention file [spoiler]//Bubble Script re-edited by Agent.eedirA //Based on code by Altan d.o.o. (snow@altan.hr) var no = 15; // image number or f

plss tell me how to make js extension files
  • ARCHIVES 
  • » just copy the code below... then PASTE it on ur JS xtention file [spoiler]//Bubble Script re-edited by Agent.eedirA //Based on code by Altan d.o.o. (snow@altan.hr) var no = 15; // image number or f

Pages: 1

Board footer

© 2025 F Talk

Current time is 09:36

[ 10 queries - 0.015 second ]
Privacy Policy