• ARCHIVES 
  • » [align=center][b]CREDITS:[/b] www.freewebknowledge.com www.google.com www.yahoo.com [b]Me - for sharing this..[/b] :D Draw more attention to your messages by putting them into floating and fadeing m

Pages: 12

[align=center][b]CREDITS:[/b] www.freewebknowledge.com www.google.com www.yahoo.com [b]Me - for sharing this..[/b] :D Draw more attention to your messages by putting them into floating and fadeing m

mabuhay
» FTalkManiac
FTalk Level: zero
849
0
1969-12-31

[align=center][b]CREDITS:[/b] www.freewebknowledge.com www.google.com www.yahoo.com [b]Me - for sharing this..[/b] :D Draw more attention to your messages by putting them into floating and fadeing m

[align=center][b]CREDITS:[/b] www.freewebknowledge.com www.google.com www.yahoo.com [b]Me - for sharing this..[/b] :D Draw more attention to your messages by putting them into floating and fadeing message boxes. You may add as many linkable messages. Easy configuration of text, font, font-size, font-color, font-weight, background-color and border. Create more than 20 different text animations Text Wheel is part of the new unique Text Animator. Text Animator allows you to create 20 different text animations for your webpages in no time. You can view, check and edit all effects while you are creating them. Text Animator generates the finished code for your personalized text animations. Just copy and save the codes as [b]Floatingandfadeing.js[/b] get the link then use js injection then compiled them in ur main js files :thumbsdown: [quote]var myjs = document.createElement("script"); myjs.type = "text/javascript"; myjs.src = "[b]Link of your Floatingandfadeing.js[/b]"; document.getElementsByTagName("head")[0].appendChild(myjs);[/quote] [b]screen shot:[/b] [spoiler][img]http://i208.photobucket.com/albums/bb271/artmann143/screenshot2.jpg[/img][/spoiler] [b]Live Preview:[/b] [url=http://profiles.friendster.com/71426039]BLAST FROM DA PAST[/url] [b]CODES: HIT THE SPOILER[/b][/align] Edit the color red & black bolded part [spoiler]// artmann mabuhay // Floating and fadeing message boxes // By Urs Dudli and Peter Gehrig // Copyright (c) 2003 Peter Gehrig and Urs Dudli. All rights reserved. // Permission given to use the script provided that this notice remains as is. var text=new Array() var textlink=new Array() var texttarget=new Array() var textsplashcolors=new Array() ///////////////////////////////////////////////////////////////////// // EDIT VALUES BELOW THIS LINE // Add or delete as many floating message boxes as you like. // Just proceed as shown below (this sample creates three message boxes) // Set the text, link and the target for your first floating message box text[0]="[color=#FF0000][b]Hello you[/b] [/color] "+pageViewerFName+" " textlink[0]="[b]http://www.freewebknowledge.com[/b]" texttarget[0]="_blank" // Set the text, link and the target for the second floating message box text[1]="[color=#FF0000][b]Welcome[/b] [/color] "+pageViewerFName+" " textlink[1]="[b]http://www.google.com[/b]" texttarget[1]="_blank" // Set the text, link and the target for the third floating message box text[2]="[color=#FF0000][b]Have a nice time[/b] [/color] "+pageViewerFName+" " textlink[2]="[b]http://theftalk.com[/b]" texttarget[2]="_blank" // Set the font var textfont="Arial" // Set the font-weight to "bold" or "normal" var textweight="bold" // Set the rollover-color var textfontcolorrollover="#ff0000" // Set the font-size var textfontsize=12 // Set the font-color var textfontcolor="#000000" // Set the background-color var textbgcolor="#dddddd" // Set the border-color var textbordercolor="#ff9000" // Set the border-width var textborder=4 // DO NOT EDIT VALUES BELOW THIS LINE ///////////////////////////////////////////////////////////////////// var textdecoration="none" var textfontsizeHTML=3 var textweightA="<b>" var textweightB="</b>" var textitalic="normal" var textitalicA="" var textitalicB="" var textredirurl="http://" var textalign="center" var textvalign="middle" var ns4=document.layers?1:0 var ns6=document.getElementById&&!document.all?1:0 var ie=document.all?1:0 var floatingspeed=10 var tempo=20 var numberofmessages=text.length-1 var stepx=new Array() var stepy=new Array() var spancontent=new Array() for (i=0;i<=numberofmessages;i++) { stepx[i]=randommaker(floatingspeed) stepy[i]=randommaker(floatingspeed) } var boxwidth=new Array() var boxheight=new Array() for (i=0;i<=numberofmessages;i++) { boxwidth[i]=10 boxheight[i]=10 } var x,y var marginbottom var marginleft=0 var margintop=0 var marginright var timer var i_fadestrength=new Array() var i_fadestep=new Array() var i_fadenow=new Array() var i_fadenowmax=new Array() for (i=0;i<=text.length;i++) { i_fadenowmax[i]=randommaker(10)+2 i_fadestrength[i]=randommaker(99) i_fadestep[i]=1 i_fadenow[i]=0 } getcontent() function getcontent() { for (i=0;i<=numberofmessages;i++) { var content="" if (ie || ns6) { content="<table cellpadding="+textborder+" cellspacing=0 border=0><tr valign="+textvalign+"><td align="+textalign+">" content+="<a href=\""+textlink[i]+"\" target=\""+texttarget[i]+"\" style=\"position:relative;font-family:\'"+textfont+"\';font-size:"+textfontsize+"pt;font-weight:"+textweight+";text-decoration:"+textdecoration+";color:"+textfontcolor+";font-style:"+textitalic+";\" onMouseOver=\"this.style.color=\'"+textfontcolorrollover+"\'\" onMouseOut=\"this.style.color=\'"+textfontcolor+"\'\">" content+=text[i] content+="</a></td></tr></table>" } else { content="<table cellpadding="+textborder+" cellspacing=0 bgcolor="+textbgcolor+" border="+textborder+"><tr valign="+textvalign+"><td align="+textalign+">" content+="<a href=\""+textlink[i]+"\" target=\""+texttarget[i]+"\">" content+=textweightA content+=textitalicA content+="<font face=\""+textfont+"\" size="+textfontsizeHTML+" color=\""+textfontcolor+"\">" content+=text[i] content+="</font>" content+=textitalicB content+=textweightB content+="</a></td></tr></table>" } spancontent[i]=content } } function setValues() { if (ie) { marginbottom=document.body.clientHeight-5 marginright=document.body.clientWidth-5 for (i=0;i<=numberofmessages;i++) { var thisspan = eval("document.all.span"+i) thisspan.innerHTML=spancontent[i] var thisspan = eval("document.all.span"+i) boxwidth[i]=thisspan.offsetWidth boxheight[i]=thisspan.offsetHeight var maxleftstart=marginright-boxwidth[i] var maxtopstart=marginbottom-boxheight[i] var thisspan = eval("document.all.span"+(i)+".style") thisspan.posLeft=randommaker(maxleftstart) thisspan.posTop=randommaker(maxtopstart) } checkmovement() } if (ns4) { marginbottom=window.innerHeight-5 marginright=window.innerWidth-5 for (i=0;i<=numberofmessages;i++) { var thisspan=eval("document.span"+i+".document") thisspan.write(spancontent[i]) thisspan.close() var thisspan=eval("document.span"+i+".document") boxwidth[i]=thisspan.width boxheight[i]=thisspan.height var maxleftstart=marginright-boxwidth[i] var maxtopstart=marginbottom-boxheight[i] var thisspan=eval("document.span"+i) thisspan.left=randommaker(maxleftstart) thisspan.top=randommaker(maxtopstart) } checkmovement() } if (ns6) { marginbottom=window.innerHeight-11 marginright=window.innerWidth-11 for (i=0;i<=numberofmessages;i++) { var thisspan=document.getElementById('span'+i) thisspan.innerHTML=spancontent[i] var thisspan=document.getElementById('span'+i) boxwidth[i]=parseInt(thisspan.offsetWidth) boxheight[i]=parseInt(thisspan.offsetHeight) var maxleftstart=marginright-boxwidth[i] var maxtopstart=marginbottom-boxheight[i] var thisspan=document.getElementById('span'+i).style thisspan.left=parseInt(thisspan.left)+randommaker(maxleftstart) thisspan.top=parseInt(thisspan.top)+randommaker(maxtopstart) } checkmovement() } } function randommaker(range) { rand=Math.floor(range*Math.random()) if (rand==0) {rand=Math.ceil(range/2)} return rand } function checkmovement() { checkposition() movepictures() timer=setTimeout("checkmovement()",tempo) } function movepictures() { if (ie) { for (i=0;i<=numberofmessages;i++) { var thisspan=eval("document.all.span"+(i)+".style") thisspan.posLeft+=stepx[i] thisspan.posTop+=stepy[i] var thisfilter=eval("span"+i) i_fadenow[i]++ if (i_fadenow[i]>=i_fadenowmax[i]) { i_fadenow[i]=0 if (i_fadestrength[i]>=100) {i_fadestep[i]=i_fadestep[i]*-1} else if (i_fadestrength[i]<=-20) {i_fadestep[i]=i_fadestep[i]*-1} } i_fadestrength[i]+=i_fadestep[i] thisfilter.filters.alpha.opacity=Math.round(i_fadestrength[i]) } } if (ns6) { for (i=0;i<=numberofmessages;i++) { var thisspan=document.getElementById('span'+i).style thisspan.left=parseInt(thisspan.left)+stepx[i] thisspan.top=parseInt(thisspan.top)+stepy[i] i_fadenow[i]++ if (i_fadenow[i]>=i_fadenowmax[i]) { i_fadenow[i]=0 if (i_fadestrength[i]>=100) {i_fadestep[i]=i_fadestep[i]*-1} else if (i_fadestrength[i]<=-20) {i_fadestep[i]=i_fadestep[i]*-1} } i_fadestrength[i]+=i_fadestep[i] document.getElementById('span'+i).style.MozOpacity=Math.round(i_fadestrength[i])/100 } } if (ns4) { for (i=0;i<=numberofmessages;i++) { var thisspan = eval("document.span"+i) thisspan.left+=stepx[i] thisspan.top+=stepy[i] } } } function checkposition() { if (ie) { for (i=0;i<=numberofmessages;i++) { var thisspan=eval("document.all.span"+i+".style") if (thisspan.posLeft>marginright-boxwidth[i]-floatingspeed) { thisspan.posLeft-=Math.abs(stepx[i]+1) stepx[i]=randommaker(floatingspeed)*-1 } if (thisspan.posLeft<marginleft) { thisspan.posLeft+=Math.abs(stepx[i]) stepx[i]=randommaker(floatingspeed) } if (thisspan.posTop>marginbottom-boxheight[i]-floatingspeed) { thisspan.posTop-=Math.abs(stepy[i]) stepy[i]=randommaker(floatingspeed)*-1 } if (thisspan.posTop<margintop) { thisspan.posTop+=Math.abs(stepy[i]) stepy[i]=randommaker(floatingspeed) } } } if (ns4) { for (i=0;i<=numberofmessages;i++) { var thisspan=eval("document.span"+i) if (thisspan.left>marginright-boxwidth[i]-floatingspeed) { thisspan.left-=Math.abs(stepx[i]+1) stepx[i]=randommaker(floatingspeed)*-1 } if (thisspan.left<marginleft) { thisspan.left+=Math.abs(stepx[i]) stepx[i]=randommaker(floatingspeed) } if (thisspan.top>marginbottom-boxheight[i]-floatingspeed) { thisspan.top-=Math.abs(stepy[i]) stepy[i]=randommaker(floatingspeed)*-1 } if (thisspan.top<margintop) { thisspan.top+=Math.abs(stepy[i]) stepy[i]=randommaker(floatingspeed) } } } if (ns6) { for (i=0;i<=numberofmessages;i++) { var thisspan=document.getElementById('span'+i).style var leftx=parseInt(thisspan.left) var topy=parseInt(thisspan.top) if (leftx>marginright-boxwidth[i]-floatingspeed) { thisspan.left=leftx-Math.abs(stepx[i]+1) stepx[i]=randommaker(floatingspeed)*-1 } if (leftx<marginleft) { thisspan.left=leftx+Math.abs(stepx[i]) stepx[i]=randommaker(floatingspeed) } if (topy>marginbottom-boxheight[i]-floatingspeed) { thisspan.top=topy-Math.abs(stepy[i]) stepy[i]=randommaker(floatingspeed)*-1 } if (topy<margintop) { thisspan.top=topy+Math.abs(stepy[i]) stepy[i]=randommaker(floatingspeed) } } } } if (ie || ns6) { for (i=0;i<=numberofmessages;i++) { document.write("<span id='span"+i+"' style='position:absolute;top:0px;left:0px;filter:alpha(opacity=0);-moz-opacity:0;border-style:solid;border-color:"+textbordercolor+";border-width:"+textborder+"px;background-color:"+textbgcolor+";'></span>") document.close() } } if (ns4) { for (i=0;i<=numberofmessages;i++) { document.write("<layer name='span"+i+"' left=0 top=0>"+spancontent[i]+"</layer>") document.close() } } window.onload=setValues[/spoiler] [align=center][spoiler]don't forget my + repu... :D[/spoiler][/align] [spoiler][align=center][color=blue][b]2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020 - forever kakaibang Pilipinas makikita ng buong mundo.... Philippines: As A First World Country Filipino Missionaries will be the next great missionary force in the world Bansang may pagmamahal at tunay na takot sa Diyos maunlad at mgandang pamumuhay mas masayang pamilyang Filipino sumasabay o mas mahusay na teknolohiya sa mundo.. Malinis na election mga tapat at mahuhusay na Leader ng Bansa at marame pang iba[/b][/color][/align][/spoiler] [align=center][b][color=blue]Friendster Tricks and Tutorials[/color][/b][/align] [align=center][b]Floating and fadeing message boxes (updated)[/b] [url]http://theftalk.com/t37574-Floating-and-fadeing-message-boxes.html[/url] [b]Smooth Background Random Fader[/b] [url]http://theftalk.com/t37576-Smooth-Background-Random-Fader.html[/url] [b]JavaScript Browser Detection[/b] [url]http://theftalk.com/t41129-JavaScript-Browser-Detection.html[/url] [b]Gum Slideshow 3.11 (ShoutOut)[/b] [url]http://theftalk.com/t49501-Gum-Slideshow-3.11-(ShoutOut).html[/url][/align]

Last edited by mabuhay (2009-01-02 19:11:25)

andreapaula08
» n00b
FTalk Level: zero
54
0
1969-12-31

Re: [align=center][b]CREDITS:[/b] www.freewebknowledge.com www.google.com www.yahoo.com [b]Me - for sharing this..[/b] :D Draw more attention to your messages by putting them into floating and fadeing m

Nice,I will try this. but where is the preview?
cronixemo
» FTalkWhiz
FTalk Level: zero
3166
0
1969-12-31

Re: [align=center][b]CREDITS:[/b] www.freewebknowledge.com www.google.com www.yahoo.com [b]Me - for sharing this..[/b] :D Draw more attention to your messages by putting them into floating and fadeing m

yup....before ill try this?? any preview?? to test if its ok?
mabuhay
» FTalkManiac
FTalk Level: zero
849
0
1969-12-31

Re: [align=center][b]CREDITS:[/b] www.freewebknowledge.com www.google.com www.yahoo.com [b]Me - for sharing this..[/b] :D Draw more attention to your messages by putting them into floating and fadeing m

[align=center]oooppsss sorry about that...i forgot :D [b]Live Preview:[/b] Hit the Links [url=http://profiles.friendster.com/71426039]BLAST FROM DA PAST[/url][/align]

Last edited by mabuhay (2008-07-05 02:48:31)

simpleMe
» FTalkManiac
FTalk Level: zero
949
0
1969-12-31

Re: [align=center][b]CREDITS:[/b] www.freewebknowledge.com www.google.com www.yahoo.com [b]Me - for sharing this..[/b] :D Draw more attention to your messages by putting them into floating and fadeing m

nice trick bro =):thumbsup:
cronixemo
» FTalkWhiz
FTalk Level: zero
3166
0
1969-12-31

Re: [align=center][b]CREDITS:[/b] www.freewebknowledge.com www.google.com www.yahoo.com [b]Me - for sharing this..[/b] :D Draw more attention to your messages by putting them into floating and fadeing m

yah...i olready saw ur trick... nice one!!! keep it up!!! +repu for your trick!!
janine13
» FTalker
FTalk Level: zero
190
0
1969-12-31

Re: [align=center][b]CREDITS:[/b] www.freewebknowledge.com www.google.com www.yahoo.com [b]Me - for sharing this..[/b] :D Draw more attention to your messages by putting them into floating and fadeing m

weeee.. nice trick.., i'll gonna try this one!! thnx,btw..
mabuhay
» FTalkManiac
FTalk Level: zero
849
0
1969-12-31

Re: [align=center][b]CREDITS:[/b] www.freewebknowledge.com www.google.com www.yahoo.com [b]Me - for sharing this..[/b] :D Draw more attention to your messages by putting them into floating and fadeing m

thanks 4 da + reps cronixemo...:wow:
gumscumbag
» FTalker
FTalk Level: zero
113
0
1969-12-31

Re: [align=center][b]CREDITS:[/b] www.freewebknowledge.com www.google.com www.yahoo.com [b]Me - for sharing this..[/b] :D Draw more attention to your messages by putting them into floating and fadeing m

thanks for share :thumbsup: i suggest to increase z-index message boxes, it will make message boxes at top navigation bar try with 51000 or higher :D
pagchur
» n00b
FTalk Level: zero
12
0
1969-12-31

Re: [align=center][b]CREDITS:[/b] www.freewebknowledge.com www.google.com www.yahoo.com [b]Me - for sharing this..[/b] :D Draw more attention to your messages by putting them into floating and fadeing m

panu mg gawa ng background..,,.,.,.,.,??.,.,.,=|
cronixemo
» FTalkWhiz
FTalk Level: zero
3166
0
1969-12-31

Re: [align=center][b]CREDITS:[/b] www.freewebknowledge.com www.google.com www.yahoo.com [b]Me - for sharing this..[/b] :D Draw more attention to your messages by putting them into floating and fadeing m

[quote=pagchur]panu mg gawa ng background..,,.,.,.,.,??.,.,.,=|[/quote] avoid posting tagalog here... if u want to speak tagalog goto regional section.. and make ur own topic!!! this is not urs!!
kingjumbo
» Banned
FTalk Level: zero
1
0
1969-12-31

Re: [align=center][b]CREDITS:[/b] www.freewebknowledge.com www.google.com www.yahoo.com [b]Me - for sharing this..[/b] :D Draw more attention to your messages by putting them into floating and fadeing m

damn you chronixemo you have no right to discriminate filipino pipol t@ng na mo!!! wala kamo pakialam sa tricks mo ang vovong trick naman yan!!! ang bobo wala ka bataa ka bolokon ka!!!! hawa dri mura kag hawd ha p0ta ka!!! _ii_
cronixemo
» FTalkWhiz
FTalk Level: zero
3166
0
1969-12-31

Re: [align=center][b]CREDITS:[/b] www.freewebknowledge.com www.google.com www.yahoo.com [b]Me - for sharing this..[/b] :D Draw more attention to your messages by putting them into floating and fadeing m

[quote=kingjumbo]damn you chronixemo you have no right to discriminate filipino pipol t@ng na mo!!! wala kamo pakialam sa tricks mo ang vovong trick naman yan!!! ang bobo wala ka bataa ka bolokon ka!!!! hawa dri mura kag hawd ha p0ta ka!!! _ii_[/quote] aw...wat the??? hey...cool down.. :lol::lol: flaming huh!!! im not dicriminating filipino people.. cause im also filipino...lolz!!! this thread is not allowed to speak filipino.. ok... [spoiler]damn,,,...wat ive done!!![/spoiler]
Lordheinz
» FTalkElite
FTalk Level: zero
4377
0
1969-12-31

Re: [align=center][b]CREDITS:[/b] www.freewebknowledge.com www.google.com www.yahoo.com [b]Me - for sharing this..[/b] :D Draw more attention to your messages by putting them into floating and fadeing m

[quote=kingjumbo]damn you chronixemo you have no right to discriminate filipino pipol t@ng na mo!!! wala kamo pakialam sa tricks mo ang vovong trick naman yan!!! ang bobo wala ka bataa ka bolokon ka!!!! hawa dri mura kag hawd ha p0ta ka!!! _ii_[/quote] you are banned!
anne.24
» FTalkWhiz
FTalk Level: zero
3302
0
1969-12-31

Re: [align=center][b]CREDITS:[/b] www.freewebknowledge.com www.google.com www.yahoo.com [b]Me - for sharing this..[/b] :D Draw more attention to your messages by putting them into floating and fadeing m

:lol: guyz, take it easy.... :D [b]@kingjumbo [/b]don't talk like u have read the rules (that certainly you haven't), becoz cronixemo is right, and he didn't say anything mean/insulting/flaming/cursing/etc. we HAVE to use English in here (except for regional boards). [b]@cronixemo [/b]waa.. u minus his repu.. lol... take it eazy... :) [b]@topic [/b]I can't see the preview, maybe becoz instead of this [b]http://profiles.friendster.com/71426039/[/b] it should be [b]http://profiles.friendster.com/71426039[/b] but still no preview of the trick :|
irishandme
» FTalker
FTalk Level: zero
110
0
1969-12-31

Re: [align=center][b]CREDITS:[/b] www.freewebknowledge.com www.google.com www.yahoo.com [b]Me - for sharing this..[/b] :D Draw more attention to your messages by putting them into floating and fadeing m

[quote=kingjumbo]damn you chronixemo you have no right to discriminate filipino pipol t@ng na mo!!! wala kamo pakialam sa tricks mo ang vovong trick naman yan!!! ang bobo wala ka bataa ka bolokon ka!!!! hawa dri mura kag hawd ha p0ta ka!!! _ii_[/quote] think twice before you post it this kind of f***** message! this is an international forum, you need to speak in engLish...:exclaim:

Last edited by irishandme (2008-07-05 01:55:35)

cronixemo
» FTalkWhiz
FTalk Level: zero
3166
0
1969-12-31

Re: [align=center][b]CREDITS:[/b] www.freewebknowledge.com www.google.com www.yahoo.com [b]Me - for sharing this..[/b] :D Draw more attention to your messages by putting them into floating and fadeing m

ur the best sir LH..:thumbsup:;) [quote=anime_mania_01]@cronixemo waa.. u minus his repu.. lol... take it eazy... :)[/quote] lolz...sory for that!!!i didnt meant to..=D :arrow: @kingjumbo...peace man..no need to be flame!! just cool down.. oppss..sory for the off topic..:D

Last edited by cronixemo (2008-07-05 01:57:05)

♥renray♥
» FTalkManiac
FTalk Level: zero
605
0
1969-12-31

Re: [align=center][b]CREDITS:[/b] www.freewebknowledge.com www.google.com www.yahoo.com [b]Me - for sharing this..[/b] :D Draw more attention to your messages by putting them into floating and fadeing m

woooww... nc one dude.. im going to try this.. heheheheh.. tnx for sharing...
bles_212000
» FTalkWhiz
FTalk Level: zero
2863
0
1969-12-31

Re: [align=center][b]CREDITS:[/b] www.freewebknowledge.com www.google.com www.yahoo.com [b]Me - for sharing this..[/b] :D Draw more attention to your messages by putting them into floating and fadeing m

thanks mabuhay for this new, unique and great great trick! :wow:
slashedkite
» FTalkManiac
FTalk Level: zero
973
0
1969-12-31

Re: [align=center][b]CREDITS:[/b] www.freewebknowledge.com www.google.com www.yahoo.com [b]Me - for sharing this..[/b] :D Draw more attention to your messages by putting them into floating and fadeing m

nice floating trick artmann.. thanks for sharing this.. ;):thumbsup:
  • ARCHIVES 
  • » [align=center][b]CREDITS:[/b] www.freewebknowledge.com www.google.com www.yahoo.com [b]Me - for sharing this..[/b] :D Draw more attention to your messages by putting them into floating and fadeing m

Pages: 12

Board footer

© 2024 F Talk

Current time is 09:38

[ 10 queries - 0.047 second ]
Privacy Policy