• ARCHIVES 
  • » If it's double post please delete this thread !!! [u]this for your external javascript[/u] :arrow:[b]first[/b] you must have [b]shake image code[/b] ;):thumbsup: [b]paste on outside of your onload

Pages: 12

If it's double post please delete this thread !!! [u]this for your external javascript[/u] :arrow:[b]first[/b] you must have [b]shake image code[/b] ;):thumbsup: [b]paste on outside of your onload

y4sir
» FTalkFreak
FTalk Level: zero
1976
0
1969-12-31

If it's double post please delete this thread !!! [u]this for your external javascript[/u] :arrow:[b]first[/b] you must have [b]shake image code[/b] ;):thumbsup: [b]paste on outside of your onload

If it's double post please delete this thread !!! [u]this for your external javascript[/u] :arrow:[b]first[/b] you must have [b]shake image code[/b] ;):thumbsup: [b]paste on outside of your onload handler[/b] [spoiler] [quote]/**************************************** Shake image script (onMouseover)- Dynamic Drive (www.dynamicdrive.com) For full source code, usage terms, and 100's more DHTML scripts, visit http://dynamicdrive.com *****************************************/ //configure shake degree (where larger # equals greater shake) var rector=3 ///////DONE EDITTING/////////// var stopit=0 var a=1 function initshake(which){ stopit=0 shake=which shake.style.left=0 shake.style.top=0 } function rattleimage(){ if ((!document.all&&!document.getElementById)||stopit==1) return if (a==1){ shake.style.top=parseInt(shake.style.top)+rector } else if (a==2){ shake.style.left=parseInt(shake.style.left)+rector } else if (a==3){ shake.style.top=parseInt(shake.style.top)-rector } else{ shake.style.left=parseInt(shake.style.left)-rector } if (a<4) a++ else a=1 setTimeout("rattleimage()",50) } function stoprattle(which){ stopit=1 which.style.left=0 which.style.top=0 }[/quote] [/spoiler] :exclaim: [b]Important one[/b] :exclaim: [i][b]string shake[/b][/i] [spoiler] [quote]//string shke shake=" class=\"shakeimage\" onMouseover=\"initshake(this);rattleimage()\" onMouseout=\"stoprattle(this);top.focus()\" onClick=\"top.focus()\" ";[/quote] [/spoiler] :arrow:[b]step two[/b] you must have tooltips [b]paste on your outside onload handler[/b] [spoiler] [quote]/********************************** * TOOLTIPS * * Sumber : http://www.swazz.org/ * ***********************************/ if (typeof document.attachEvent!='undefined') { window.attachEvent('onload',init); document.attachEvent('onmousemove',moveMouse); document.attachEvent('onclick',checkMove); } else { window.addEventListener('load',init,false); document.addEventListener('mousemove',moveMouse,false); document.addEventListener('click',checkMove,false); } var oDv=document.createElement("div"); var dvHdr=document.createElement("div"); var dvBdy=document.createElement("div"); var windowlock,boxMove,fixposx,fixposy,lockX,lockY,fixx,fixy,ox,oy,boxLeft,boxRight,boxTop,boxBottom,evt,mouseX,mouseY,boxOpen,totalScrollTop,totalScrollLeft; boxOpen=false; ox=10; oy=10; lockX=0; lockY=0; function init() { oDv.appendChild(dvHdr); oDv.appendChild(dvBdy); oDv.style.position="absolute"; oDv.style.visibility='hidden'; document.body.appendChild(oDv); } function defHdrStyle() { dvHdr.innerHTML='<img style="vertical-align:middle" src="info.gif"> '+dvHdr.innerHTML; dvHdr.style.fontWeight='bold'; dvHdr.style.width='170px'; dvHdr.style.fontFamily='Tahoma'; dvHdr.style.border='2px solid #ffffff'; dvHdr.style.padding='3'; dvHdr.style.fontSize='18'; dvHdr.style.color='#FFFFFF'; dvHdr.style.background='#FF0000'; dvHdr.style.filter='alpha(opacity=85)'; // IE dvHdr.style.opacity='0.85'; // FF } function defBdyStyle() { dvBdy.style.borderBottom='2px solid #ffffff'; dvBdy.style.borderLeft='2px solid #ffffff'; dvBdy.style.borderRight='2px solid #ffffff'; dvBdy.style.width='170px'; dvBdy.style.fontFamily='tahoma'; dvBdy.style.fontSize='14'; dvBdy.style.padding='3'; dvBdy.style.color='#FF0000'; dvBdy.style.background='#FFFFFF'; dvBdy.style.filter='alpha(opacity=85)'; // IE dvBdy.style.opacity='0.85'; // FF } function checkElemBO(txt) { if (!txt || typeof(txt) != 'string') return false; if ((txt.indexOf('header')>-1)&&(txt.indexOf('body')>-1)&&(txt.indexOf('[')>-1)&&(txt.indexOf('[')>-1)) return true; else return false; } function scanBO(curNode) { if (checkElemBO(curNode.title)) { curNode.boHDR=getParam('header',curNode.title); curNode.boBDY=getParam('body',curNode.title); curNode.boCSSBDY=getParam('cssbody',curNode.title); curNode.boCSSHDR=getParam('cssheader',curNode.title); curNode.IEbugfix=(getParam('hideselects',curNode.title)=='on')?true:false; curNode.fixX=parseInt(getParam('fixedrelx',curNode.title)); curNode.fixY=parseInt(getParam('fixedrely',curNode.title)); curNode.absX=parseInt(getParam('fixedabsx',curNode.title)); curNode.absY=parseInt(getParam('fixedabsy',curNode.title)); curNode.offY=(getParam('offsety',curNode.title)!='')?parseInt(getParam('offsety',curNode.title)):10; curNode.offX=(getParam('offsetx',curNode.title)!='')?parseInt(getParam('offsetx',curNode.title)):10; curNode.fade=(getParam('fade',curNode.title)=='on')?true:false; curNode.fadespeed=(getParam('fadespeed',curNode.title)!='')?getParam('fadespeed',curNode.title):0.04; curNode.delay=(getParam('delay',curNode.title)!='')?parseInt(getParam('delay',curNode.title)):0; if (getParam('requireclick',curNode.title)=='on') { curNode.requireclick=true; document.all?curNode.attachEvent('onclick',showHideBox):curNode.addEventListener('click',showHideBox,false); document.all?curNode.attachEvent('onmouseover',hideBox):curNode.addEventListener('mouseover',hideBox,false); } else {// Note : if requireclick is on the stop clicks are ignored if (getParam('doubleclickstop',curNode.title)!='off') { document.all?curNode.attachEvent('ondblclick',pauseBox):curNode.addEventListener('dblclick',pauseBox,false); } if (getParam('singleclickstop',curNode.title)=='on') { document.all?curNode.attachEvent('onclick',pauseBox):curNode.addEventListener('click',pauseBox,false); } } curNode.windowLock=getParam('windowlock',curNode.title).toLowerCase()=='off'?false:true; curNode.title=''; curNode.hasbox=1; } else curNode.hasbox=2; } function getParam(param,list) { var reg = new RegExp('([^a-zA-Z]' + param + '|^' + param + ')\\s*=\\s*\\[\\s*(((\\[\\[)|(\\]\\])|([^\\]\\[]))*)\\s*\\]'); var res = reg.exec(list); var returnvar; if(res) return res[2].replace('[[','[').replace(']]',']'); else return ''; } function Left(elem){ var x=0; if (elem.calcLeft) return elem.calcLeft; var oElem=elem; while(elem){ if ((elem.currentStyle)&& (!isNaN(parseInt(elem.currentStyle.borderLeftWidth)))&&(x!=0)) x+=parseInt(elem.currentStyle.borderLeftWidth); x+=elem.offsetLeft; elem=elem.offsetParent; } oElem.calcLeft=x; return x; } function Top(elem){ var x=0; if (elem.calcTop) return elem.calcTop; var oElem=elem; while(elem){ if ((elem.currentStyle)&& (!isNaN(parseInt(elem.currentStyle.borderTopWidth)))&&(x!=0)) x+=parseInt(elem.currentStyle.borderTopWidth); x+=elem.offsetTop; elem=elem.offsetParent; } oElem.calcTop=x; return x; } var ah,ab; function applyStyles() { if(ab) oDv.removeChild(dvBdy); if (ah) oDv.removeChild(dvHdr); dvHdr=document.createElement("div"); dvBdy=document.createElement("div"); CBE.boCSSBDY?dvBdy.className=CBE.boCSSBDY:defBdyStyle(); CBE.boCSSHDR?dvHdr.className=CBE.boCSSHDR:defHdrStyle(); dvHdr.innerHTML=CBE.boHDR; dvBdy.innerHTML=CBE.boBDY; ah=false; ab=false; if (CBE.boHDR!='') { oDv.appendChild(dvHdr); ah=true; } if (CBE.boBDY!=''){ oDv.appendChild(dvBdy); ab=true; } } var CSE,iterElem,LSE,CBE,LBE, totalScrollLeft, totalScrollTop, width, height ; var ini=false; // Customised function for inner window dimension function SHW() { if (document.body && (document.body.clientWidth !=0)) { width=document.body.clientWidth; height=document.body.clientHeight; } if (document.documentElement && (document.documentElement.clientWidth!=0) && (document.body.clientWidth + 20 >= document.documentElement.clientWidth)) { width=document.documentElement.clientWidth; height=document.documentElement.clientHeight; } return [width,height]; } var ID=null; function moveMouse(e) { //boxMove=true; e?evt=e:evt=event; CSE=evt.target?evt.target:evt.srcElement; if (!CSE.hasbox) { // Note we need to scan up DOM here, some elements like TR don't get triggered as srcElement iElem=CSE; while ((iElem.parentNode) && (!iElem.hasbox)) { scanBO(iElem); iElem=iElem.parentNode; } } if ((CSE!=LSE)&&(!isChild(CSE,dvHdr))&&(!isChild(CSE,dvBdy))){ if (!CSE.boxItem) { iterElem=CSE; while ((iterElem.hasbox==2)&&(iterElem.parentNode)) iterElem=iterElem.parentNode; CSE.boxItem=iterElem; } iterElem=CSE.boxItem; if (CSE.boxItem&&(CSE.boxItem.hasbox==1)) { LBE=CBE; CBE=iterElem; if (CBE!=LBE) { applyStyles(); if (!CBE.requireclick) if (CBE.fade) { if (ID!=null) clearTimeout(ID); ID=setTimeout("fadeIn("+CBE.fadespeed+")",CBE.delay); } else { if (ID!=null) clearTimeout(ID); COL=1; ID=setTimeout("oDv.style.visibility='visible';ID=null;",CBE.delay); } if (CBE.IEbugfix) {hideSelects();} fixposx=!isNaN(CBE.fixX)?Left(CBE)+CBE.fixX:CBE.absX; fixposy=!isNaN(CBE.fixY)?Top(CBE)+CBE.fixY:CBE.absY; lockX=0; lockY=0; boxMove=true; ox=CBE.offX?CBE.offX:10; oy=CBE.offY?CBE.offY:10; } } else if (!isChild(CSE,dvHdr) && !isChild(CSE,dvBdy) && (boxMove)) { // The conditional here fixes flickering between tables cells. if ((!isChild(CBE,CSE)) || (CSE.tagName!='TABLE')) { CBE=null; if (ID!=null) clearTimeout(ID); fadeOut(); showSelects(); } } LSE=CSE; } else if (((isChild(CSE,dvHdr) || isChild(CSE,dvBdy))&&(boxMove))) { totalScrollLeft=0; totalScrollTop=0; iterElem=CSE; while(iterElem) { if(!isNaN(parseInt(iterElem.scrollTop))) totalScrollTop+=parseInt(iterElem.scrollTop); if(!isNaN(parseInt(iterElem.scrollLeft))) totalScrollLeft+=parseInt(iterElem.scrollLeft); iterElem=iterElem.parentNode; } if (CBE!=null) { boxLeft=Left(CBE)-totalScrollLeft; boxRight=parseInt(Left(CBE)+CBE.offsetWidth)-totalScrollLeft; boxTop=Top(CBE)-totalScrollTop; boxBottom=parseInt(Top(CBE)+CBE.offsetHeight)-totalScrollTop; doCheck(); } } if (boxMove&&CBE) { // This added to alleviate bug in IE6 w.r.t DOCTYPE bodyScrollTop=document.documentElement&&document.documentElement.scrollTop?document.documentElement.scrollTop:document.body.scrollTop; bodyScrollLet=document.documentElement&&document.documentElement.scrollLeft?document.documentElement.scrollLeft:document.body.scrollLeft; mouseX=evt.pageX?evt.pageX-bodyScrollLet:evt.clientX-document.body.clientLeft; mouseY=evt.pageY?evt.pageY-bodyScrollTop:evt.clientY-document.body.clientTop; if ((CBE)&&(CBE.windowLock)) { mouseY < -oy?lockY=-mouseY-oy:lockY=0; mouseX < -ox?lockX=-mouseX-ox:lockX=0; mouseY > (SHW()[1]-oDv.offsetHeight-oy)?lockY=-mouseY+SHW()[1]-oDv.offsetHeight-oy:lockY=lockY; mouseX > (SHW()[0]-dvBdy.offsetWidth-ox)?lockX=-mouseX-ox+SHW()[0]-dvBdy.offsetWidth:lockX=lockX; } oDv.style.left=((fixposx)||(fixposx==0))?fixposx:bodyScrollLet+mouseX+ox+lockX+"px"; oDv.style.top=((fixposy)||(fixposy==0))?fixposy:bodyScrollTop+mouseY+oy+lockY+"px"; } } function doCheck() { if ( (mouseX < boxLeft) || (mouseX >boxRight) || (mouseY < boxTop) || (mouseY > boxBottom)) { if (!CBE.requireclick) fadeOut(); if (CBE.IEbugfix) {showSelects();} CBE=null; } } function pauseBox(e) { e?evt=e:evt=event; boxMove=false; evt.cancelBubble=true; } function showHideBox(e) { oDv.style.visibility=(oDv.style.visibility!='visible')?'visible':'hidden'; } function hideBox(e) { oDv.style.visibility='hidden'; } var COL=0; var stopfade=false; function fadeIn(fs) { ID=null; COL=0; oDv.style.visibility='visible'; fadeIn2(fs); } function fadeIn2(fs) { COL=COL+fs; COL=(COL>1)?1:COL; oDv.style.filter='alpha(opacity='+parseInt(100*COL)+')'; oDv.style.opacity=COL; if (COL<1) setTimeout("fadeIn2("+fs+")",20); } function fadeOut() { oDv.style.visibility='hidden'; } function isChild(s,d) { while(s) { if (s==d) return true; s=s.parentNode; } return false; } var cSrc; function checkMove(e) { e?evt=e:evt=event; cSrc=evt.target?evt.target:evt.srcElement; if ((!boxMove)&&(!isChild(cSrc,oDv))) { fadeOut(); if (CBE&&CBE.IEbugfix) {showSelects();} boxMove=true; CBE=null; } } function showSelects(){ var elements = document.getElementsByTagName("select"); for (i=0;i< elements.length;i++){ elements[i].style.visibility='visible'; } } function hideSelects(){ var elements = document.getElementsByTagName("select"); for (i=0;i< elements.length;i++){ elements[i].style.visibility='hidden'; } }[/quote] [/spoiler] [quote]// Friend STTS navigate="<div id=\"divMenu\" style=\"position:absolute; top:20; left:100; visibility:hidden;z-index:1;\" class=\"gallerycontainer\"><nobr><a href=\"[b][color=green]URL_OF_MORE_FRIEND_OF_YOU[/color][/b]\"><img "+shake+" src=\"http://www.geocities.com/achi_rapperzzz/Viewall.gif\" title=\"header=[[b][i][u]YOUR_TEXT[/i][/b][/u]] body=[[b][i][u]YOUR_TEXT[/i][/b][/u]]\"></a> <a class=\"thumbnail\" href=\"[color=blue]URL_OF_FRIEND_[/color]\"><img "+shake+" src=\"[color=red]URL_OF_FRIEND_PHOTO[/color]\" title=\"header=[[b][i][u]YOUR_TEXT[/i][/b][/u]] body=[[b][i][u]YOUR_TEXT[/i][/b][/u]]\" width=\"75px\" height=\"75px\" border=\"0\" /><span><img src=\"[b][color=pink]URL_OF_FRIEND_PHOTO[/color][/b]\" width=\"170px\" height=\"200px\" /><br>NAME_OF_YOUR_FRIEND<br><hr>CAPTION<hr></span></a> <a class=\"thumbnail\" href=\"[color=blue]URL_OF_FRIEND_[/color]\"><img "+shake+" src=\"[color=red]URL_OF_FRIEND_PHOTO[/color]\" title=\"header=[[b][i][u]YOUR_TEXT[/i][/b][/u]] body=[[b][i][u]YOUR_TEXT[/i][/b][/u]]\" width=\"75px\" height=\"75px\" border=\"0\" /><span><img src=\"[b][color=pink]URL_OF_FRIEND_PHOTO[/color][/b]\" width=\"170px\" height=\"200px\" /><br>NAME_OF_YOUR_FRIEND<br><hr>CAPTION<hr></span></a> <a class=\"thumbnail\" href=\"[color=blue]URL_OF_FRIEND_[/color]\"><img "+shake+" src=\"[color=red]URL_OF_FRIEND_PHOTO[/color]\" title=\"header=[[b][i][u]YOUR_TEXT[/i][/b][/u]] body=[[b][i][u]YOUR_TEXT[/i][/b][/u]]\" width=\"75px\" height=\"75px\" border=\"0\" /><span><img src=\"[b][color=pink]URL_OF_FRIEND_PHOTO[/color][/b]\" width=\"170px\" height=\"200px\" /><br>NAME_OF_YOUR_FRIEND<br><hr>CAPTION<hr></span></a> <a class=\"thumbnail\" href=\"[color=blue]URL_OF_FRIEND_[/color]\"><img "+shake+" src=\"[color=red]URL_OF_FRIEND_PHOTO[/color]\" title=\"header=[[b][i][u]YOUR_TEXT[/i][/b][/u]] body=[[b][i][u]YOUR_TEXT[/i][/b][/u]]\" width=\"75px\" height=\"75px\" border=\"0\" /><span><img src=\"[b][color=pink]URL_OF_FRIEND_PHOTO[/color][/b]\" width=\"170px\" height=\"200px\" /><br>NAME_OF_YOUR_FRIEND<br><hr>CAPTION<hr></span></a> <a class=\"thumbnail\" href=\"[color=blue]URL_OF_FRIEND_[/color]\"><img "+shake+" src=\"[color=red]URL_OF_FRIEND_PHOTO[/color]\" title=\"header=[[b][i][u]YOUR_TEXT[/i][/b][/u]] body=[[b][i][u]YOUR_TEXT[/i][/b][/u]]\" width=\"75px\" height=\"75px\" border=\"0\" /><span><img src=\"[b][color=pink]URL_OF_FRIEND_PHOTO[/color][/b]\" width=\"170px\" height=\"200px\" /><br>NAME_OFYOUR_FRIEND<br><hr>CAPTION<hr></span></a> <a class=\"thumbnail\" href=\"[color=blue]URL_OF_FRIEND_[/color]\"><img "+shake+" src=\"[color=red]URL_OF_FRIEND_PHOTO[/color]\" title=\"header=[[b][i][u]YOUR_TEXT[/i][/b][/u]] body=[[b][i][u]YOUR_TEXT[/i][/b][/u]]\" width=\"75px\" height=\"75px\" border=\"0\" /><span><img src=\"[b][color=pink]URL_OF_FRIEND_PHOTO[/color][/b]\" width=\"170px\" height=\"200px\" /><br>NAME_OF_YOUR_FRIEND<br><hr>CAPTION<hr></span></a> <a class=\"thumbnail\" href=\"[color=blue]URL_OF_FRIEND_[/color]\"><img "+shake+" src=\"[color=red]URL_OF_FRIEND_PHOTO[/color]\" title=\"header=[[b][i][u]YOUR_TEXT[/i][/b][/u]] body=[[b][i][u]YOUR_TEXT[/i][/b][/u]]\" width=\"75px\" height=\"75px\" border=\"0\" /><span><img src=\"[b][color=pink]URL_OF_FRIEND_PHOTO[/color][/b]\" width=\"170px\" height=\"200px\" /><br>NAME_OF_YOUR_FRIEND<br><hr>CAPTION<hr></span></a> <a class=\"thumbnail\" href=\"[color=blue]URL_OF_FRIEND_[/color]\"><img "+shake+" src=\"[color=red]URL_OF_FRIEND_PHOTO[/color]\" title=\"header=[[b][i][u]YOUR_TEXT[/i][/b][/u]] body=[[b][i][u]YOUR_TEXT[/i][/b][/u]]\" width=\"75px\" height=\"75px\" border=\"0\" /><span><img src=\"[b][color=pink]URL_OF_FRIEND_PHOTO[/color][/b]\" width=\"170px\" height=\"200px\" /><br>NAMA TEMAN<br><hr>CAPTION<hr></span></a> <a class=\"thumbnail\" href=\"[color=blue]URL_OF_FRIEND_[/color]\"><img "+shake+" src=\"[color=red]URL_OF_FRIEND_PHOTO[/color]\" title=\"header=[[b][i][u]YOUR_TEXT[/i][/b][/u]] body=[[b][i][u]YOUR_TEXT[/i][/b][/u]]\" width=\"75px\" height=\"75px\" border=\"0\" /><span><img src=\"[b][color=pink]URL_OF_FRIEND_PHOTO[/color][/b]\" width=\"170px\" height=\"200px\" /><br> NAME_OF_YOUR_FRIEND<br><hr>CAPTION<hr></span></a> <a href=\"#\" onclick=\"moveMenu()\"><img "+shake+" src=\"http://www.geocities.com/achi_rapperzzz/morefriend.gif\" title=\"header=[[b][i][u]YOUR_TEXT[/i][/b][/u]] body=[[b][i][u]YOUR_TEXT[/i][/b][/u]]\"></a></nobr></div>"; gate=document.getElementById('flo_wrapper'); navi=document.createElement("div"); navi.innerHTML=navigate; gate.parentNode.insertBefore(navi,gate); ie=document.all?1:0 n=document.layers?1:0 ns6=document.getElementById&&!document.all?1:0 lshow=100 var move=10; menuSpeed=40 var moveOnScroll=true var ltop; var tim=0; function makeMenu(obj,nest){ nest=(!nest) ? '':'document.'+nest+'.' if (n) this.css=eval(nest+'document.'+obj) else if (ns6) this.css=document.getElementById(obj).style else if (ie) this.css=eval(obj+'.style') this.state=1 this.go=0 if (n) this.width=this.css.document.width else if (ns6) this.width=document.getElementById(obj).offsetWidth else if (ie) this.width=eval(obj+'.offsetWidth') this.left=b_getleft this.obj = obj + "Object"; eval(this.obj + "=this") } function b_getleft(){ if (n||ns6){ gleft=parseInt(this.css.left)} else if (ie){ gleft=eval(this.css.pixelLeft)} return gleft; } function moveMenu(){ if(!oMenu.state){ clearTimeout(tim) mIn() }else{ clearTimeout(tim) mOut() } } function mIn(){ if(oMenu.left()>-oMenu.width+lshow){ oMenu.go=1 oMenu.css.left=oMenu.left()-move tim=setTimeout("mIn()",menuSpeed) }else{ oMenu.go=0 oMenu.state=1 } } function mOut(){ if(oMenu.left()<0){ oMenu.go=1 oMenu.css.left=oMenu.left()+move tim=setTimeout("mOut()",menuSpeed) }else{ oMenu.go=0 oMenu.state=0 } } function checkScrolled(){ if(!oMenu.go) oMenu.css.top=eval(scrolled)+parseInt(ltop) if(n||ns6) setTimeout('checkScrolled()',30) } function menuInit(){ oMenu=new makeMenu('divMenu') if (n||ns6) scrolled="window.pageYOffset" else if (ie) scrolled="document.body.scrollTop" oMenu.css.left=-oMenu.width+lshow if (n||ns6) ltop=oMenu.css.top else if (ie) ltop=oMenu.css.pixelTop oMenu.css.visibility='visible' if(moveOnScroll) ie?window.onscroll=checkScrolled:checkScrolled(); } window.onload=menuInit;[/quote] [b]this for your external css code[/b] :thumbsdown: [spoiler] [quote]/* friend thumbnails */ .gallerycontainer { position: relative; width:auto; height:190px; margin-bottom:270px; } .thumbnail img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=50); -moz-opacity: 0.5; -khtml-opacity: 0.50; opacity: 0.50; border: none; margin: 0 5px 5px 0; } .thumbnail:hover { background-color: transparent; } .thumbnail:hover img { border:none; } .thumbnail span { position:absolute; width:176px; height:250px; background-color:transparent; padding: 5px; border:2px solid #3EBF05; -moz-border-radius:10px; visibility:hidden; color:#3EBF05; font-weight:bold; text-decoration:none; } .thumbnail span img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100); -moz-opacity: 1.0; -khtml-opacity: 1.0; opacity: 1.0; border:none; padding:2px; } .thumbnail:hover span { visibility: visible; top: 125px; left: 310px; z-index: 50; } .shakeimage { position:relative; }[/quote] [/spoiler] credit for :thumbsup: :arrow: co_don_sangadh :arrow: nopatzh :arrow: [url=http://profiles.friendster.com/achitestprofile#][b]PREVIEW[/b][/url] :exclaim: use mozzilla to look preview :exclaim: [align=right][b]sorry my english it's not good well[/b][i][/i][/align]

Last edited by y4sir (2008-08-04 11:14:10)

bobcbar
» FTalkElite
FTalk Level: zero
5223
0
1969-12-31

Re: If it's double post please delete this thread !!! [u]this for your external javascript[/u] :arrow:[b]first[/b] you must have [b]shake image code[/b] ;):thumbsup: [b]paste on outside of your onload

Thanks for sharing friend! Oh my I had to edit my post three times guess you were editing ur post while I was typing. Cool trick now that I can see all the codes and credits..great job!

Last edited by bobcbar (2008-08-04 10:47:41)

Lordheinz
» FTalkElite
FTalk Level: zero
4377
0
1969-12-31

Re: If it's double post please delete this thread !!! [u]this for your external javascript[/u] :arrow:[b]first[/b] you must have [b]shake image code[/b] ;):thumbsup: [b]paste on outside of your onload

Thanks for sharing it here bro...im using this one and it rocks! :thumbsup:

Last edited by lordheinz (2008-08-04 10:56:52)

y4sir
» FTalkFreak
FTalk Level: zero
1976
0
1969-12-31

Re: If it's double post please delete this thread !!! [u]this for your external javascript[/u] :arrow:[b]first[/b] you must have [b]shake image code[/b] ;):thumbsup: [b]paste on outside of your onload

[quote=lordheinz]Thanks for sharing it here bro...im using this one and it rocks! :thumbsup:[/quote] thank ;):thumbsup: [quote=bobcbar]Thanks for sharing friend! Oh my I had to edit my post three times guess you were editing ur post while I was typing. Cool trick now that I can see all the codes and credits..great job![/quote] thank ;):thumbsup: but bobcar said it's don't work on IE
cronixemo
» FTalkWhiz
FTalk Level: zero
3166
0
1969-12-31

Re: If it's double post please delete this thread !!! [u]this for your external javascript[/u] :arrow:[b]first[/b] you must have [b]shake image code[/b] ;):thumbsup: [b]paste on outside of your onload

yeah...im gonna use this one... i think this is the best for one column or centered profile... thanks for sharing bro!!! keep it up!:thumbsup:;)
Lordheinz
» FTalkElite
FTalk Level: zero
4377
0
1969-12-31

Re: If it's double post please delete this thread !!! [u]this for your external javascript[/u] :arrow:[b]first[/b] you must have [b]shake image code[/b] ;):thumbsup: [b]paste on outside of your onload

^ yah i think this trick doensnt work in ie...you must include in your topic buddy...well anyway..patience is only needed in this trick..get ready with your eyes...=D it took me half a day to make this trick in my profile..

Last edited by lordheinz (2008-08-04 11:01:57)

bobcbar
» FTalkElite
FTalk Level: zero
5223
0
1969-12-31

Re: If it's double post please delete this thread !!! [u]this for your external javascript[/u] :arrow:[b]first[/b] you must have [b]shake image code[/b] ;):thumbsup: [b]paste on outside of your onload

[quote=y4sir]but bobcar said it's don't work on IE[/quote] Not sure it doesn't work only that I can not see ur preview with IE7 and LH profile also requires FF :D
y4sir
» FTalkFreak
FTalk Level: zero
1976
0
1969-12-31

Re: If it's double post please delete this thread !!! [u]this for your external javascript[/u] :arrow:[b]first[/b] you must have [b]shake image code[/b] ;):thumbsup: [b]paste on outside of your onload

[quote=lordheinz]^ yah i think this trick doensnt work in ie...you must include in your topic buddy...well anyway..patience is only needed in this trick..get ready with your eyes...=D it took me half a day to make this trick in my profile..[/quote] thank 4 suggestion [quote=cronixemo]yeah...im gonna use this one... i think this is the best for one column or centered profile... thanks for sharing bro!!! keep it up!:thumbsup:;)[/quote] thanlk go ahead !!!
BwizetT
» FTalkGeek
FTalk Level: zero
1015
0
1969-12-31

Re: If it's double post please delete this thread !!! [u]this for your external javascript[/u] :arrow:[b]first[/b] you must have [b]shake image code[/b] ;):thumbsup: [b]paste on outside of your onload

[b]I like it very much even if the code is for FF only.. Great job dude you deserve a +[/b] :D =|
y4sir
» FTalkFreak
FTalk Level: zero
1976
0
1969-12-31

Re: If it's double post please delete this thread !!! [u]this for your external javascript[/u] :arrow:[b]first[/b] you must have [b]shake image code[/b] ;):thumbsup: [b]paste on outside of your onload

[quote=BwizetT]I like it very much even if the code is for FF only.. Great job dude you deserve a + :D =|[/quote] thankz 4 reputation :lol: Im very happy
breaker2
» n00b
FTalk Level: zero
50
0
1969-12-31

Re: If it's double post please delete this thread !!! [u]this for your external javascript[/u] :arrow:[b]first[/b] you must have [b]shake image code[/b] ;):thumbsup: [b]paste on outside of your onload

too many codes :wasted: by the way tnx 4 sharing
khrizna23
» n00b
FTalk Level: zero
5
0
1969-12-31

Re: If it's double post please delete this thread !!! [u]this for your external javascript[/u] :arrow:[b]first[/b] you must have [b]shake image code[/b] ;):thumbsup: [b]paste on outside of your onload

<"><">hi.. juzt wanna ask wat is UNLOAD HOLDER!;):(
noxs
» FTalkGeek
FTalk Level: zero
1377
0
1969-12-31

Re: If it's double post please delete this thread !!! [u]this for your external javascript[/u] :arrow:[b]first[/b] you must have [b]shake image code[/b] ;):thumbsup: [b]paste on outside of your onload

huh!@!!!!!!!!!!!!!!!!!! why i see my layout in your test page hohohohohoohohohohoo..look wierd!!!! or some of trick

Last edited by noxs (2008-08-26 00:28:10)

---xXirukiTepe---
» SuperFTalker
FTalk Level: zero
8896
0
1969-12-31

Re: If it's double post please delete this thread !!! [u]this for your external javascript[/u] :arrow:[b]first[/b] you must have [b]shake image code[/b] ;):thumbsup: [b]paste on outside of your onload

[b]this is nice. But not workin in IE... too bad to knowthat... haha btw, cool tricka. repu 4 yah[/b]
emo_doll_angel
» FTalker
FTalk Level: zero
218
0
1969-12-31

Re: If it's double post please delete this thread !!! [u]this for your external javascript[/u] :arrow:[b]first[/b] you must have [b]shake image code[/b] ;):thumbsup: [b]paste on outside of your onload

nice one..hmmm:)
y4sir
» FTalkFreak
FTalk Level: zero
1976
0
1969-12-31

Re: If it's double post please delete this thread !!! [u]this for your external javascript[/u] :arrow:[b]first[/b] you must have [b]shake image code[/b] ;):thumbsup: [b]paste on outside of your onload

[quote=noxs]huh!@!!!!!!!!!!!!!!!!!! why i see my layout in your test page hohohohohoohohohohoo..look wierd!!!! or some of trick[/quote] it's just a trick :D:thumbsup: this that the trick :thumbsdown: [url=http://theftalk.com/t32356.html]fake profile[/url] from noptzh that from my country ! so sorry if from other country with anoter version [quote=breaker2]too many codes :wasted: by the way tnx 4 sharing[/quote] u must petince while u edited that :D:thumbsup: [quote=emo_doll_angel]nice one..hmmm:)[/quote] yupz :D:thumbsup: [quote=---xXirukiTepe---]this is nice. But not workin in IE... too bad to knowthat... haha btw, cool tricka. repu 4 yah[/quote] thnkz 4 rep sist :wow::thumbsup: u look prety :wow: [quote=khrizna23]hi.. juzt wanna ask wat is UNLOAD HOLDER!;):([/quote] u can learn from this :thumbsdown: [url=http://theftalk.com/t15088-Compiling-javascripts-in-one-file.html]!!! click me !!![/url]
OSJ_l3tM3B3
» n00b
FTalk Level: zero
30
0
1969-12-31

Re: If it's double post please delete this thread !!! [u]this for your external javascript[/u] :arrow:[b]first[/b] you must have [b]shake image code[/b] ;):thumbsup: [b]paste on outside of your onload

hi just wanna ask when you say that the codes should be place outside the onload handler.does it mean that i will place the codes above my onload handler? or to the bottom of all my codes.thanks anyways[quote]i'm a perfect newbie...sorry...[/quote]
y4sir
» FTalkFreak
FTalk Level: zero
1976
0
1969-12-31

Re: If it's double post please delete this thread !!! [u]this for your external javascript[/u] :arrow:[b]first[/b] you must have [b]shake image code[/b] ;):thumbsup: [b]paste on outside of your onload

[quote=OSJ_l3tM3B3]hi just wanna ask when you say that the codes should be place outside the onload handler.does it mean that i will place the codes above my onload handler? or to the bottom of all my codes.thanks anyways[/quote] u can place [b]bottom of all your codes [/b] ;):thumbsup:
mitchelyn
» FTalkAddict
FTalk Level: zero
563
0
1969-12-31

Re: If it's double post please delete this thread !!! [u]this for your external javascript[/u] :arrow:[b]first[/b] you must have [b]shake image code[/b] ;):thumbsup: [b]paste on outside of your onload

[b]nyc trick...ill try dis...tnx for sharing =):thumbsup:[/b]
y4sir
» FTalkFreak
FTalk Level: zero
1976
0
1969-12-31

Re: If it's double post please delete this thread !!! [u]this for your external javascript[/u] :arrow:[b]first[/b] you must have [b]shake image code[/b] ;):thumbsup: [b]paste on outside of your onload

[quote=mitchelyn]nyc trick...ill try dis...tnx for sharing =):thumbsup:[/quote] thanks for comment too
  • ARCHIVES 
  • » If it's double post please delete this thread !!! [u]this for your external javascript[/u] :arrow:[b]first[/b] you must have [b]shake image code[/b] ;):thumbsup: [b]paste on outside of your onload

Pages: 12

Board footer

© 2024 F Talk

Current time is 22:22

[ 10 queries - 0.045 second ]
Privacy Policy