2008-07-05 09:34:38

legend4
» FTalker
FTalk Level: zero
212
0
1969-12-31

Re: [align=justify][b]bagi member yang ingin bertanya seputar tweaking FS, silahkan bertanya dan posting disini, tapi jangan lupa,,sebelum itu tolong [url=http://theftalk.com/t2744-%5BImportant%5D-

ada yang tahu cara buat code kaya gini kagak? <">kaya ada warna pelangi" muncul" bergerak" ini htmlnya [spoiler]<html> <head> <title> 1st dota layout - More cool layouts at http://kilometer-69.com</title> <meta http-equiv="Page-Enter" content="BlendTrans(Duration=1.5)"> <meta http-equiv="Site-Exit" content="BlendTrans(Duration=1.5)"> </head> <body bgcolor="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="show_clock()"> <style type="text/css"> body { background: Black; font-family: verdana; color: Gray; font-size: 11; scrollbar-face-color : Black; scrollbar-highlight-color : Gray; scrollbar-3dlight-color : Gray; scrollbar-shadow-color : Gray; scrollbar-darkshadow-color : Gray ; scrollbar-track-color : Black; scrollbar-arrow-color : Gray; } A:link{ text-decoration: none; cursor: url(http://www.profiletweaks.com/cursors/3/ghost.ani); font-weight: normal; color: Green; } A:visited{ text-decoration: none; color: Gray;} A:active{ text-decoration: none; cursor: url(http://www.myspacecursor.net/swords/sword01.cur); color:white; } A:hover{text-decoration: none; cursor: url(http://www.myspacecursor.net/swords/sword01.cur); color: white; letter-spacing:0px;} </style> <style type="text/css"> /** pics **/ .imgblock75 img{ height:80px; width:80px; overflow: hidden; border:#737373 0px solid; margin: 0 auto; } .imgblock75 a:hover img { border:#737373 0px solid; } .itd{ vertical-align:top; } /** testimonial contents **/ .dtd{ padding-left:10px; padding-bottom:10px; margin-bottom:0px; margin-left: 5px; margin-right: 5px; text-align:justify; text-decoration:none; color:#737373!important; font-size:10px; font-weight:bold; font-family: Verdana, Arial, Helvetica, sans-serif; } /** names **/ .title a:visited, .title a:link{ text-decoration:none; color:#737373!important; font-size:10px; font-weight:bold; font-family: Verdana, Arial, Helvetica, sans-serif; } .title a:hover{ color:#737373!important; text-decoration: none; font-weight:bold; font-size:10px; font-family: Verdana, Arial, Helvetica, sans-serif; } /** view all and add a testimonial links **/ .viewall a{ font-size: 11px; color: #737373 !important; text-decoration: none; font-size:10px; font-weight:bold; font-family: Verdana, Arial, Helvetica, sans-serif; padding: 2px; } .viewall a:hover{ font-size:10px; text-decoration: none; color:#737373!important; font-weight: bold; font-family: Verdana, Arial, Helvetica, sans-serif; } .viewall{ font-size:10px; text-decoration: none; color:#737373!important; font-weight: bold; font-family: Verdana, Arial, Helvetica, sans-serif; } h2{ display:none; } .data li{ list-style-type:none; } .data{ padding:0; margin:0; } </style> <script type="text/javascript"> function clickToggle(target) { obj=(document.all) ? document.all[target] : document.getElementById(target); obj.style.display=(obj.style.display=='none') ? '' : 'none'; } </script> <script language="javascript"> // if (window.Event) document.captureEvents(Event.MOUSEUP); function nocontextmenu() { event.cancelBubble = true, event.returnValue = false; return false; } function norightclick(e) { if (window.Event) { if (e.which == 2 || e.which == 3) return false; } else if (event.button == 2 || event.button == 3) { event.cancelBubble = true, event.returnValue = false; return false; } } if (document.layers) document.captureEvents(Event.MOUSEDOWN); document.oncontextmenu = nocontextmenu; document.onmousedown = norightclick; document.onmouseup = norightclick; //--> </script> <script language="javascript"> var repeat=1 //enter 0 to not repeat scrolling after 1 run, othersise, enter 1 var title=document.title var leng=title.length var start=1 function titlemove() { titl=title.substring(start, leng) + title.substring(0, start) document.title=titl start++ if (start==leng+1) { start=0 if (repeat==0) return } setTimeout("titlemove()",140) } if (document.title) titlemove()</script> <script language="javascript"> <!--// Copyright 1996 - Tomer and Yehuda Shiran // This example will appear in our forthcoming book on JavaScript. // Feel free to "steal" this code provided that you leave this notice as is. // Additional examples from the book can be found at [url]http://www.geocities.com/SiliconValley/9000/[/url] // For more information contact Tomer or Yehuda Shiran <yshiran@iil.intel.com> // set speed of banner (pause in milliseconds between addition of new character) var speed = 10 // decrease value to increase speed (must be positive) // set pause between completion of message and beginning of following message var pause = 1500 // increase value to increase pause // set initial values var timerID = null var bannerRunning = false // create array var ar = new Array() // assign the strings to the array's elements ar[0] = "Welcome to my Friendster Profile" ar[1] = "I hope you like my design" ar[2] = "Pls leave a message on the Chatterbox" ar[3] = "Don't forget to give me a testi Thanx!" // assign index of current message var message = 0 // empty string initialization var state = "" // no value is currently being displayed clearState() // stop the banner if it is currently running function stopBanner() { // if banner is currently running if (bannerRunning) // stop the banner clearTimeout(timerID) // timer is now stopped timerRunning = false } // start the banner function startBanner() { // make sure the banner is stopped stopBanner() // start the banner from the current position showBanner() } // assign state a string of "0" characters of the length of the current message function clearState() { // initialize to empty string state = "" // create string of same length containing 0 digits for (var i = 0; i < ar[message].length; ++i) { state += "0" } } // display the current message function showBanner() { // if the current message is done if (getString()) { // increment message message++ // if new message is out of range wrap around to first message if (ar.length <= message) message = 0 // new message is first displayed as empty string clearState() // display next character after pause milliseconds timerID = setTimeout("showBanner()", pause) } else { // initialize to empty string var str = "" // built string to be displayed (only character selected thus far are displayed) for (var j = 0; j < state.length; ++j) { str += (state.charAt(j) == "1") ? ar[message].charAt(j) : " " } // partial string is placed in status bar window.status = str // add another character after speed milliseconds timerID = setTimeout("showBanner()", speed) } } function getString() { // set variable to true (it will stay true unless proven otherwise) var full = true // set variable to false if a free space is found in string (a not-displayed char) for (var j = 0; j < state.length; ++j) { // if character at index j of current message has not been placed in displayed string if (state.charAt(j) == 0) full = false } // return true immediately if no space found (avoid infinitive loop later) if (full) return true // search for random until free space found (braoken up via break statement) while (1) { // a random number (between 0 and state.length - 1 == message.length - 1) var num = getRandom(ar[message].length) // if free space found break infinitive loop if (state.charAt(num) == "0") break } // replace the 0 character with 1 character at place found state = state.substring(0, num) + "1" + state.substring(num + 1, state.length) // return false because the string was not full (free space was found) return false } function getRandom(max) { // create instance of current date var now = new Date() // create a random number (good generator) var num = now.getTime() * now.getSeconds() * Math.random() // cut random number to value between 0 and max - 1, inclusive return num % max } startBanner() // --></script> <body bgcolor="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"> <!-- ImageReady Slices (dotashare.psd) --> <table id="Table_01" width="1000" height="900" border="0" cellpadding="0" cellspacing="0"> <tr> <td colspan="2"> <img src="http://i36.photobucket.com/albums/e25/bajoyski3/Friendster/dota/dotashare_01.jpg" width="436" height="140" alt=""></td> <td colspan="2"> <img src="http://i36.photobucket.com/albums/e25/bajoyski3/Friendster/dota/dotashare_02.jpg" width="564" height="140" alt=""></td> </tr> <tr> <td> <img src="http://i36.photobucket.com/albums/e25/bajoyski3/Friendster/dota/dotashare_03.jpg" width="234" height="760" border="0" alt="" usemap="#dotashare_03_Map"></td> <td> <img src="http://i36.photobucket.com/albums/e25/bajoyski3/Friendster/dota/dotashare_04.jpg" width="202" height="760" alt=""></td> <td> <img src="http://i36.photobucket.com/albums/e25/bajoyski3/Friendster/dota/dotashare_05.jpg" width="294" height="760" alt=""></td> <td> <img src="http://i36.photobucket.com/albums/e25/bajoyski3/Friendster/dota/dotashare_06.jpg" width="270" height="760" alt=""></td> </tr> </table> <map name="dotashare_03_Map"> <!------------ EDIT THE USERID BELOW ----------------------------------------------> <area shape="rect" alt="" coords="72,467,172,499" href="http://www.friendster.com/index.php?logout=1" target="_self"> <area shape="rect" alt="view my photos!" coords="72,432,179,455" href="http://www.friendster.com/viewphotos.php?uid=USERID" target="_self"> <area shape="rect" alt="Meet my friends!" coords="72,405,188,417" href="http://www.friendster.com/friends.php?uid=USERID" target="_self"> <area shape="rect" alt="My blog!" coords="72,371,166,383" href="http://USERBLOGNAME.blogs.friendster.com/my_blog/" target="_self"> <area shape="rect" alt="Bookmark me!" coords="61,345,188,355" href="http://www.friendster.com/bookmarks.php?action=add&uid=USERID" target="_self"> <area shape="rect" alt="smile at me!" coords="60,298,188,322" href="http://www.friendster.com/sendmessage.php?uid=USERID&action=sendsmile" target="_self"> <area shape="rect" alt="Submit a Testimonial!" coords="60,273,188,283" href="http://www.friendster.com/testimonials.php?action=add&uid=USERID" target="_self"> <area shape="rect" alt="Message me!" coords="60,243,188,255" href="http://www.friendster.com/sendmessage.php?uid=USERID" target="_self"> <area shape="rect" alt="Be my friend!" coords="72,205,172,219" href="http://www.friendster.com/addfriendrequest.php?uid=USERID" target="_self"> <area shape="rect" alt="" coords="60,171,180,181" href="http://www.friendster.com/friends.php" target="_self"> <area shape="rect" alt="" coords="60,137,188,150" href="http://www.friendster.com/messages.php" target="_self"> <area shape="rect" alt="" coords="60,101,172,113" href="http://www.friendster.com/user.php" target="_self"> <area shape="rect" alt="" coords="61,65,172,86" href="http://www.friendster.com/home.php" target="_self"> </map> <!-- End ImageReady Slices --> </body> <!------------ insert mp3 player here ----------------------------------------------> <div style="position:absolute; overflow:hidden; left:-5px; top:715px; width:250px; height:145px; z-index:0"> <center><embed src="http://www.myflashfetish.com/myflashfetish-mp3-player.swf?myid=372267&mycolor=0x0&mycolor2=003300&rand=1" menu="true" quality="best" scale="noscale" bgcolor="#ffffff" wmode="transparent" width="218" height="150" name="MyFlashFetish.com" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></center> </center></div> <!------------ end mp3 player ----------------------------------------------> <!------------ edit info below ----------------------------------------------> <div style="position:absolute; overflow:hidden; left:281px; top:240px; width:509px; height:168px; z-index:0"><center> <script language="javascript"> module0="yes"; </script> <div id="content_controlpanel_1_1"></div> <hr> <br> Name : edit this part <br> Age : edit this part <br> Gender : edit this part <br> Status : edit this part <br> Hometown : edit this part <br> Location : edit this part <br> Schools : edit this part <br> Hobbies : edit this part <br> BirthDate : edit this part <br> Affiliates : edit this part <br> Religion : edit this part <br> Company : edit this part Favorite Books: edit this part <br> Favorite Movies: edit this part <br> Favorite Music: edit this part <br> Favorite TV Shows: edit this part <br> <br> <hr> <center>Name's Blog</center> <div id="content_blogs_1_3"><div class="boxcontent center">loading...<br><img src="http://images.friendster.com/images/loading.gif"></div></div> <script language="javascript"> module2="yes"; </script> </center> </center> </div> <!------------ end info----------------------------------------------> <!------------ CREATE YOUR OWN CHATBOX ACOUNT AND Change the cbox URL "ONLY "----------------------------------------------> <div style="position:absolute; left:845px; top:205px; width:145px; height:353px; z-index:0; overflow: HIDDEN;"> <p> <!-- BEGIN CBOX - [url]http://www.cbox.ws[/url] --> <table border="0" cellpadding="0" cellspacing="0" summary="cbox tagboard" align="center"> <tr> <td align="center"> <iframe frameborder="0" width="145" height="260" src="COPYYOURCHATBOXURL" marginheight="2" marginwidth="2" scrolling="auto" allowtransparency="yes" name="cboxmainche" style="border: 0px solid;" id="cboxmainche"></iframe> </td> </tr> <tr> <td align="center"> <iframe frameborder="0" width="145" height="95" src="COPYYOURCHATBOXURL" marginheight="2" marginwidth="2" scrolling="no" allowtransparency="yes" name="cboxform" style="border: 0px solid; border-top: 0px;" id="cboxform"></iframe> </td> </tr> </table> <!-- END CBOX --> <p></p> </div> <!------------ end chatbox ----------------------------------------------> <!------------ insert cboxidand tag here ----------------------------------------------> <script language="javascript"> boxid= USERBOXID; boxtag=USERBOXTAG; wvcbox="yes"; wvcboxmodule="pst"; </script> <div id="wvcboxel" style="display:none"></div> <!------------ end ----------------------------------------------> <!------------ insert counterusername here / [url]www.easycounter.com[/url] ----------------------------------------------> <div style="position:absolute; overflow:auto; left:878px; top:860px; width:70px; height:29px; z-index:0"> <img src="http://www.easycounter.com/counter.php?USERNAMEHERE"border="0" alt="Web Counter"></div> <!------------ end counter ----------------------------------------------> <!------------ insert ymusername here ----------------------------------------------> <div style="position:absolute; overflow:auto; left:848px; top:880px; width:150px; height:30px; z-index:0"> <img src="http://opi.yahoo.com/online?u=YMUSERIDHERE&m=g&t=2"/> </div> <!------------ end ym ----------------------------------------------> <!----Testimonial box------> <div id="content_18" style="position:absolute; left:282px; top:593px; width:507px; height:206px; z-index:3; overflow: auto;"></div> <script language="javascript"> module18="yes"; </script> <!----end------> <div style="position:absolute; overflow:auto; left:301px; top:823px; width:484px; height:41px; z-index:0"> <span class="style22"><a href="http://www.friendster.com/info/index.php?statpos=footer"> About Us</a> | <a href="http://www.friendster.com/info/contacts.php?statpos=footer"> Contact Us</a> | <a href="http://www.friendster.com/events.php?statpos=footer"> Events</a> | <a href="http://www.friendster.com/affiliate.php?statpos=footer"> Promote My Profile</a> | <a href="http://www.friendster.com/custhelp.php?statpos=footer"> Help</a> | <a href="http://www.friendster.com/info/tos.php?statpos=footer"> Terms of Service</a> | <a href="http://www.friendster.com/info/privacy.php?statpos=footer"> Privacy Policy</a><br> Copyright © 2002-2007 Friendster, Inc. All rights reserved. Patent Pending.</span></div> <!------------ insert photo url here ----------------------------------------------> <div id="Layer1" style="position:absolute; left:843px; top:625px; width:140px; height:206px; z-index:3; overflow: Hidden;"> <marquee style="width:140;height:500;border:0px solid black;" direction="down" scrollamount="5" scrolldelay="80" onMouseOver="this.stop()" onMouseOut="this.start()"> <p align="center"> <img src="http://i36.photobucket.com/albums/e25/bajoyski3/wallpapers/your_picture.gif" width="130" height="100"> <img src="http://i36.photobucket.com/albums/e25/bajoyski3/wallpapers/your_picture.gif" width="130" height="100"> <img src="http://i36.photobucket.com/albums/e25/bajoyski3/wallpapers/your_picture.gif" width="130" height="100"> <img src="http://i36.photobucket.com/albums/e25/bajoyski3/wallpapers/your_picture.gif" width="130" height="100"> <img src="http://i36.photobucket.com/albums/e25/bajoyski3/wallpapers/your_picture.gif" width="130" height="100"> <img src="http://i36.photobucket.com/albums/e25/bajoyski3/wallpapers/your_picture.gif" width="130" height="100"> <img src="http://i36.photobucket.com/albums/e25/bajoyski3/wallpapers/your_picture.gif" width="130" height="100"> </marquee></p> </div> <!------------ end photo ----------------------------------------------> <!------------ insert photo url here ----------------------------------------------> <div id="Layer1" style="position:absolute; left:305px; top:440px; width:462px; height:99px; z-index:3; overflow: Hidden;"> <p align="center"><marquee style="width:560;border:0px solid black;" onmouseover='this.stop()' onmouseout='this.start()' scrollamount="3" behavior="alternate"> <img border="0" src=" [url]http://i36.photobucket.com/albums/e25/bajoyski3/wallpapers/your_picture.gif[/url]" width="130" height="100"> <img border="0" src=" [url]http://i36.photobucket.com/albums/e25/bajoyski3/wallpapers/your_picture.gif[/url]" width="130" height="100"> <img border="0" src=" [url]http://i36.photobucket.com/albums/e25/bajoyski3/wallpapers/your_picture.gif[/url]" width="130" height="100"> </marquee></p> </div> <!------------ end photo ----------------------------------------------> <div style="position:absolute; overflow:hidden; left:700px; top:170px; width:75px; height:20px; z-index:0"> <script language="javascript" src="http://www.freewebtown.com/bajoyski3/liveclock.js"> /* Live Clock Script- By Mark Plachetta (astro@bigpond.net.au©) based on code from DynamicDrive.com For full source code, 100's more DHTML scripts, and Terms Of Use, visit [url]http://www.dynamicdrive.com[/url] */ </script> </div> <SCRIPT LANGUAGE="JavaScript"> <!-- Crazy Worm --> <!-- Crazy Worm //Choose colours. Minimum of 2 colours=new Array('#ff0000','#00ff00','#ff00ff','#ffa500','#ffff00','#ffffff','#4488ff'); //Nothing needs altering past here n4=(document.layers); n6=(navigator.appName=="Netscape" && parseFloat(navigator.appVersion) >= 5)?true:false; ie=(document.all); o6=(navigator.appName.indexOf("Opera") != -1)?true:false; num=(n6)?10:16; psp=(n6)?num/3:num/4; fix=(n6)?14:0; y=10; x=10; py=0; px=0; vel=15; rnd=0; cnt=0; alt=10; dx=0; vx=0; hx=0; dir=Math.floor(Math.random()*60+10); if (n4){ for (i=0; i < num; i++) document.write('<LAYER NAME="t'+i+'" LEFT=0 TOP=0 CLIP="0,0,'+i/psp+','+i/psp+'"></LAYER>'); } else{ if (ie) document.write('<div id="ies" style="position:absolute;top:0;left:0"><div style="position:relative">'); for (i=0; i < num; i++) document.write('<div id="t'+i+'" style="position:absolute;top:0;left:0;width:'+i/psp+';height:'+i/psp+';font-size:1px">.</div>'); if (ie) document.write('</div></div>'); } function followleader(){ sy=(ie)?0:window.pageYOffset; sx=(ie)?0:window.pageXOffset; if (ie){ ies.style.top=document.body.scrollTop; ies.style.left=document.body.scrollLeft; } for (i=0; i < num; i++){ randcol=colours[Math.floor(Math.random()*colours.length)]; temp1=(n4)?document.layers["t"+i]:document.getElementById("t"+i).style; if (i < num-1){ temp2=(n4)?document.layers["t"+(i+1)]:document.getElementById("t"+(i+1)).style; temp1.top=temp2.top; temp1.left=temp2.left } else{ temp1.top=py+sy; temp1.left=px+sx; } if (n4)temp1.bgColor=randcol; else temp1.background=randcol; } } function pth(){ cnt=0; alt=Math.floor(5+Math.random()*10); turns=new Array(40,-40,0,0,1,-1,4,-4,7,-7,10,-10,20,-20,2); rnd=turns[Math.floor(Math.random()*turns.length)]; if (rnd==40||rnd==-40) alt=3; else if (rnd==2){ vel=0;alt=20; } else{ vel=15; alt=Math.floor(5+Math.random()*10); } } function ani(){ cnt++; if (cnt>=alt) pth(); h=(ie)?document.body.clientHeight:window.innerHeight; w=(ie)?document.body.clientWidth:window.innerWidth; dx=dir+=rnd; y = vel*Math.sin(dx*Math.PI/180); x = vel*Math.cos(dx*Math.PI/180); if (dir < 0) dir+=360; py+=y; px+=x; vx=180-dir; hx=0-dir; if ((py < 1) && (px < 1)) {py=1;px=1;dir=45} if ((py < 1) && (px > w)) {py=1;px=w;dir=135} if ((py > h) && (px < 1)) {py=h;px=1;dir=315} if ((py > h) && (px > w)) {py=h;px=w;dir=225} if (py < 1) {py=1;dir=hx;} if (py > h-psp) {py=h-psp;dir=hx;} if (px < 1) {px=1;dir=vx;} if (px > w-(psp+fix)) {px=w-(psp+fix);dir=vx;} followleader(); setTimeout('ani()',20); } ani(); //--> </SCRIPT> <script language=JavaScript> <!-- //Disable right click script III- By Renigade (renigade@mediaone.net) //For full source code, visit [url]http://www.dynamicdrive.com[/url] var message=""; /////////////////////////////////// function clickIE() {if (document.all) {(message);return false;}} function clickNS(e) {if (document.layers||(document.getElementById&&!document.all)) { if (e.which==2||e.which==3) {(message);return false;}}} if (document.layers) {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;} else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;} // --> </script> <script language="javascript"> message = "Welcome to my profile….^" + ".. feel free to give comments and suggestions in my shoutbox! enjoy!^" scrollSpeed = 100 lineDelay = 1700 // Do not change the text below // txt = "" function scrollText(pos) { if (message.charAt(pos) != '^') { txt = txt + message.charAt(pos) status = txt pauze = scrollSpeed } else { pauze = lineDelay txt = "" if (pos == message.length-1) pos = -1 } pos++ setTimeout("scrollText('"+pos+"')",pauze) } scrollText(0) </script> </font> <STYLE TYPE="text/css">BODY{cursor: url(http://www.myspacecursor.net/swords/sword01.cur);} A:LINK,a:Active, A: Hover{cursor: url(http://www.profiletweaks.com/cursors/5/3dmhelp.ani);} </STYLE> </html>[/spoiler] kira" codenya d bagian mana? gua ubrek" kagak nemu"

Board footer

© 2024 F Talk

Current time is 14:16

[ 12 queries - 0.504 second ]
Privacy Policy