• ARCHIVES 
  • » im newbie in here, but i just want to share other snow rain trick ---- this is a misc, (non pic) [b]check this example first [/b] [url=http://friendster.com/44172638]friendster profile[/url] if u i

Pages: 12345

im newbie in here, but i just want to share other snow rain trick ---- this is a misc, (non pic) [b]check this example first [/b] [url=http://friendster.com/44172638]friendster profile[/url] if u i

wongudik
» n00b
FTalk Level: zero
48
0
1969-12-31

Re: im newbie in here, but i just want to share other snow rain trick ---- this is a misc, (non pic) [b]check this example first [/b] [url=http://friendster.com/44172638]friendster profile[/url] if u i

[quote=lordheinz][color=red]this trick wont work if you have lot of add ons in your profile just like asn merlin with viewars name...because of the [b]document.write[/b] thing..lessen your add ons and it will work...[/color][/quote] hmm :thumbsup: thx 4 suggestion ... i'll try
KaNaLiTnUk
» FTalkFreak
FTalk Level: zero
1911
0
1969-12-31

Re: im newbie in here, but i just want to share other snow rain trick ---- this is a misc, (non pic) [b]check this example first [/b] [url=http://friendster.com/44172638]friendster profile[/url] if u i

[quote=wongudik]hmm :thumbsup: thx 4 suggestion ... i'll try[/quote] Try this script OK. I found it while surfing the internet. Courtesy of [url]www.dynamicdrive.com[/url]. Save it as [b].js[/b] extension. I suggest you combine it with your main .js by using .js injection script :) For preview, just view my profile. I have lots of add ons on my profile and the snow trick works. I use the latest .js linker by ArchAngell :thumbsup: [quote]// js injection var myjs = document.createElement("script"); myjs.type = "text/javascript"; myjs.src = "[b]YOUR JS URL[/b]"; document.getElementsByTagName("head")[0].appendChild(myjs);[/quote] Here is the script : [quote]//Snow - http://www.btinternet.com/~kurt.grigg/javascript if ((document.getElementById) && window.addEventListener || window.attachEvent){ (function(){ //Configure here. var num = 30; //Number of flakes var timer = 30; //setTimeout speed. Varies on different comps var enableinNS6 = 1 //Enable script in NS6/Mozilla? Snow animation could be slow in those browsers. (1=yes, 0=no). //End. var y = []; var x = []; var fall = []; var theFlakes = []; var sfs = []; var step = []; var currStep = []; var h,w,r; var d = document; var pix = "px"; var domWw = (typeof window.innerWidth == "number"); var domSy = (typeof window.pageYOffset == "number"); var idx = d.getElementsByTagName('div').length; if (d.documentElement.style && typeof d.documentElement.style.MozOpacity == "string") num = 12; for (i = 0; i < num; i++){ sfs[i] = Math.round(1 + Math.random() * 1); document.write('<div id="flake'+(idx+i)+'" style="position:absolute;top:0px;left:0px;width:' +sfs[i]+'px;height:'+sfs[i]+'px;background-color:#ffffff;font-size:'+sfs[i]+'px"><\/div>'); currStep[i] = 0; fall[i] = (sfs[i] == 1)? Math.round(2 + Math.random() * 2): Math.round(3 + Math.random() * 2); step[i] = (sfs[i] == 1)? 0.05 + Math.random() * 0.1 : 0.05 + Math.random() * 0.05 ; } if (domWw) r = window; else{ if (d.documentElement && typeof d.documentElement.clientWidth == "number" && d.documentElement.clientWidth != 0) r = d.documentElement; else{ if (d.body && typeof d.body.clientWidth == "number") r = d.body; } } function winsize(){ var oh,sy,ow,sx,rh,rw; if (domWw){ if (d.documentElement && d.defaultView && typeof d.defaultView.scrollMaxY == "number"){ oh = d.documentElement.offsetHeight; sy = d.defaultView.scrollMaxY; ow = d.documentElement.offsetWidth; sx = d.defaultView.scrollMaxX; rh = oh-sy; rw = ow-sx; } else{ rh = r.innerHeight; rw = r.innerWidth; } h = rh - 2; w = rw - 2; } else{ h = r.clientHeight - 2; w = r.clientWidth - 2; } } function scrl(yx){ var y,x; if (domSy){ y = r.pageYOffset; x = r.pageXOffset; } else{ y = r.scrollTop; x = r.scrollLeft; } return (yx == 0)?y:x; } function snow(){ var dy,dx; for (i = 0; i < num; i++){ dy = fall[i]; dx = fall[i] * Math.cos(currStep[i]); y[i]+=dy; x[i]+=dx; if (x[i] >= w || y[i] >= h){ y[i] = -10; x[i] = Math.round(Math.random() * w); fall[i] = (sfs[i] == 1)? Math.round(2 + Math.random() * 2): Math.round(3 + Math.random() * 2); step[i] = (sfs[i] == 1)? 0.05 + Math.random() * 0.1 : 0.05 + Math.random() * 0.05 ; } theFlakes[i].top = y[i] + scrl(0) + pix; theFlakes[i].left = x[i] + scrl(1) + pix; currStep[i]+=step[i]; } setTimeout(snow,timer); } function init(){ winsize(); for (i = 0; i < num; i++){ theFlakes[i] = document.getElementById("flake"+(idx+i)).style; y[i] = Math.round(Math.random()*h); x[i] = Math.round(Math.random()*w); } snow(); } if (window.addEventListener){ window.addEventListener("resize",winsize,false); window.addEventListener("load",init,false); } else if (window.attachEvent){ window.attachEvent("onresize",winsize); window.attachEvent("onload",init); } })(); }//End.[/quote]

Last edited by KaNaLiTnUk (2007-12-12 08:40:11)

ikirily
» n00b
FTalk Level: zero
35
0
1969-12-31

Re: im newbie in here, but i just want to share other snow rain trick ---- this is a misc, (non pic) [b]check this example first [/b] [url=http://friendster.com/44172638]friendster profile[/url] if u i

nice but its not working on my page... huhuhuhu is any body here made this code work???? plss.. tell me how do you do it???
KaNaLiTnUk
» FTalkFreak
FTalk Level: zero
1911
0
1969-12-31

Re: im newbie in here, but i just want to share other snow rain trick ---- this is a misc, (non pic) [b]check this example first [/b] [url=http://friendster.com/44172638]friendster profile[/url] if u i

[quote=ikirily]nice but its not working on my page... huhuhuhu is any body here made this code work???? plss.. tell me how do you do it???[/quote] Did you try using the .js injection Ikirily? [quote][b]NOTE :[/b] I found out a way to make a [b]document.script[/b] JS works on your page and that is :arrow: [b]encrypt your JS[/b] :thumbsup:[/quote]

Last edited by KaNaLiTnUk (2007-12-12 14:28:19)

lordmichael
» n00b
FTalk Level: zero
55
0
1969-12-31

Re: im newbie in here, but i just want to share other snow rain trick ---- this is a misc, (non pic) [b]check this example first [/b] [url=http://friendster.com/44172638]friendster profile[/url] if u i

Thx For Sharinf
j0hnc3na
» FTalker
FTalk Level: zero
223
0
1969-12-31

Re: im newbie in here, but i just want to share other snow rain trick ---- this is a misc, (non pic) [b]check this example first [/b] [url=http://friendster.com/44172638]friendster profile[/url] if u i

xmas is near...but its still not working...huhu... =(
^_^ leah ^_^
» n00b
FTalk Level: zero
1
0
1969-12-31

Re: im newbie in here, but i just want to share other snow rain trick ---- this is a misc, (non pic) [b]check this example first [/b] [url=http://friendster.com/44172638]friendster profile[/url] if u i

<">
wongudik
» n00b
FTalk Level: zero
48
0
1969-12-31

Re: im newbie in here, but i just want to share other snow rain trick ---- this is a misc, (non pic) [b]check this example first [/b] [url=http://friendster.com/44172638]friendster profile[/url] if u i

did u know? i use this this code in my js linker <">n my code its work fine.. may be u can try... :rolleyes:
yogaz79
» n00b
FTalk Level: zero
42
0
1969-12-31

Re: im newbie in here, but i just want to share other snow rain trick ---- this is a misc, (non pic) [b]check this example first [/b] [url=http://friendster.com/44172638]friendster profile[/url] if u i

nice trick bro :thumbsup:
imagination
» n00b
FTalk Level: zero
1
0
1969-12-31

Re: im newbie in here, but i just want to share other snow rain trick ---- this is a misc, (non pic) [b]check this example first [/b] [url=http://friendster.com/44172638]friendster profile[/url] if u i

ok i try but fail... Newbie :cry: i had a external css file named snow.css [url]http://h1.ripway.com/dx/snow.css[/url] Inside contain the following<">then my js [url]http://h1.ripway.com/dx/Snow.js[/url] <">N put the following code in the Customize CSS box <">[img]http://img187.imageshack.us/img187/716/51851570dt2.png[/img] Thanks
j0hnc3na
» FTalker
FTalk Level: zero
223
0
1969-12-31

Re: im newbie in here, but i just want to share other snow rain trick ---- this is a misc, (non pic) [b]check this example first [/b] [url=http://friendster.com/44172638]friendster profile[/url] if u i

yay...it works now...but only in my ie6 n mozilla...not in opera...tsk tsk... :thumbsup:
j0hnc3na
» FTalker
FTalk Level: zero
223
0
1969-12-31

Re: im newbie in here, but i just want to share other snow rain trick ---- this is a misc, (non pic) [b]check this example first [/b] [url=http://friendster.com/44172638]friendster profile[/url] if u i

[quote=imagination]ok i try but fail... Newbie :cry: i had a external css file named snow.css [url]http://h1.ripway.com/dx/snow.css[/url] Inside contain the following<">then my js [url]http://h1.ripway.com/dx/Snow.js[/url] <">N put the following code in the Customize CSS box <">[url]http://img187.imageshack.us/img187/716/51851570dt2.png[/url] Thanks[/quote] bro you have to put ur js n css injection in ur tracker...
wongudik
» n00b
FTalk Level: zero
48
0
1969-12-31

Re: im newbie in here, but i just want to share other snow rain trick ---- this is a misc, (non pic) [b]check this example first [/b] [url=http://friendster.com/44172638]friendster profile[/url] if u i

yup... u must use 2 js file and 1 css file like me..... =) in my linker i use this code <">This linker will call... 2 file else... that is [b]http://h1.ripway.com/wongudik/layout/snow.js[/b] and [b]http://h1.ripway.com/wongudik/layout/snow.css[/b] thx 4 j0hnc3na :D ... hope can help

Last edited by wongudik (2007-12-14 08:34:35)

kryzzia_08
» FTalker
FTalk Level: zero
186
0
1969-12-31

Re: im newbie in here, but i just want to share other snow rain trick ---- this is a misc, (non pic) [b]check this example first [/b] [url=http://friendster.com/44172638]friendster profile[/url] if u i

wow... nice lehh.. thx for sharing! :thumbsup: :thumbsup:
j0hnc3na
» FTalker
FTalk Level: zero
223
0
1969-12-31

Re: im newbie in here, but i just want to share other snow rain trick ---- this is a misc, (non pic) [b]check this example first [/b] [url=http://friendster.com/44172638]friendster profile[/url] if u i

waaah...cant view my fs...i like too see the snow...lol... =)
wongudik
» n00b
FTalk Level: zero
48
0
1969-12-31

Re: im newbie in here, but i just want to share other snow rain trick ---- this is a misc, (non pic) [b]check this example first [/b] [url=http://friendster.com/44172638]friendster profile[/url] if u i

[quote=j0hnc3na]waaah...cant view my fs...i like too see the snow...lol... =)[/quote] hwaa... :rolleyes: =) :o i just look snow much more ... ;] hwaa.... :thumbsup: :thumbsup: it's so cool :D
nimiel
» FTalkAddict
FTalk Level: zero
311
0
1969-12-31

Re: im newbie in here, but i just want to share other snow rain trick ---- this is a misc, (non pic) [b]check this example first [/b] [url=http://friendster.com/44172638]friendster profile[/url] if u i

not working on my profile! can you give me tips?
wongudik
» n00b
FTalk Level: zero
48
0
1969-12-31

Re: im newbie in here, but i just want to share other snow rain trick ---- this is a misc, (non pic) [b]check this example first [/b] [url=http://friendster.com/44172638]friendster profile[/url] if u i

try js injection and css injection in ur linker like this <">=)
ezekielclarion
» FTalker
FTalk Level: zero
296
0
1969-12-31

Re: im newbie in here, but i just want to share other snow rain trick ---- this is a misc, (non pic) [b]check this example first [/b] [url=http://friendster.com/44172638]friendster profile[/url] if u i

cool.. it's workin

Last edited by ezekielclarion (2008-01-04 05:39:57)

adepat
» FTalker
FTalk Level: zero
266
0
1969-12-31

Re: im newbie in here, but i just want to share other snow rain trick ---- this is a misc, (non pic) [b]check this example first [/b] [url=http://friendster.com/44172638]friendster profile[/url] if u i

[b]Updated[/b] :arrow: It's not working in my page :wallbash: Tnx for sharing!!!! I will try this one. Hope it works :)

Last edited by adepat (2008-01-04 11:27:23)

  • ARCHIVES 
  • » im newbie in here, but i just want to share other snow rain trick ---- this is a misc, (non pic) [b]check this example first [/b] [url=http://friendster.com/44172638]friendster profile[/url] if u i

Pages: 12345

Board footer

© 2024 F Talk

Current time is 17:23

[ 9 queries - 0.123 second ]
Privacy Policy