kalau ngilangin tu yang
lu bilang masuk
sini ja bro
[url]http://theftalk.com/t8106-%7BTUTORIAL%7D-Magic-Code-Untuk-CSS-Extension-%28for-newbie%29.html[/url]
[b][email protected][/b] niy taro d bagian c
[spoiler]/**
* Viewer's Main Photo at WIWTM
* Copyright 2007-2008 by FeRuZZ � http://profiles.friendster.com/feruzz
* Internalize AJAX handler
* No warranty expressed or implied. Use at your own risk.
**/
/*global VIEWERPIC*/
VIEWERPIC = {};
(function () {
VIEWERPIC = {
// private property
photo: null,
init: function () {
if (pageViewerID !== "") {
try {
VIEWERPIC.ajaxRequest("GET", "http://" + location.hostname + "/" + pageViewerID, true, null, VIEWERPIC.viewer, null);
} catch (e) {}
}
},
viewer: function (htm) {
if (htm.replace(/^\s*|\s*$/g, "") === "") {
window.alert("ERROR: Empty xmlresponse! \n Unable to parse your details!");
return;
} else {
htm = htm.slice(htm.indexOf("<div class=\"imgblock200\">") + 0, htm.indexOf("<ul id=\"controlPanelButtons\">") + 0);
htm = htm.slice(htm.indexOf("<img src=\"") + 10, htm.indexOf("\"></a></div>") + 0);
VIEWERPIC.photo = document.createElement("div");
VIEWERPIC.photo.id = "viewerphoto";
VIEWERPIC.photo.align = "center";
VIEWERPIC.photo.appendChild(document.createElement("a"));
VIEWERPIC.photo.getElementsByTagName("a")[0].href = "/" + pageViewerID;
VIEWERPIC.photo.getElementsByTagName("a")[0].target = "_blank";
VIEWERPIC.photo.getElementsByTagName("a")[0].title = pageViewerFName;
VIEWERPIC.photo.getElementsByTagName("a")[0].appendChild(document.createElement("img"));
VIEWERPIC.photo.getElementsByTagName("img")[0].src = htm;
VIEWERPIC.photo.appendChild(document.createElement("br"));
VIEWERPIC.photo.appendChild(document.createElement("span"));
VIEWERPIC.photo.getElementsByTagName("span")[0].className = "q";
VIEWERPIC.photo.getElementsByTagName("span")[0].appendChild(document.createElement("a"));
VIEWERPIC.photo.getElementsByTagName("a")[1].href = "/" + pageViewerID;
VIEWERPIC.photo.getElementsByTagName("a")[1].target = "_blank";
VIEWERPIC.photo.getElementsByTagName("a")[1].title = pageViewerFName;
VIEWERPIC.photo.getElementsByTagName("a")[1].innerHTML = pageViewerFName;
document.getElementById("viewerpic").parentNode.replaceChild(VIEWERPIC.photo, document.getElementById("viewerpic"));
}
},
ajaxRequest: function (type, url, async, param, func, handlerparam) {
/**
* ajaxRequest - You may not remove or change this notice.
* version: 2.4
* Copyright 2008 by FeRuZZ � http://profiles.friendster.com/feruzz.
*
* @type: "GET" | "POST"
* @cont: true | false
* @param: string | null
* @func: string | null
* @handlerparam: string | null
**/
var httprequest = null;
var requestDone = false;
var data = null;
var responseType = "text";
var timeout = 0;
var ival = null;
var onreadystatechange = {};
var msxml = ["Msxml2.XMLHTTP.6.0", "Msxml2.XMLHTTP.3.0", "Msxml2.XMLHTTP", "Microsoft.XMLHTTP"];
for (var x = 0, len = msxml.length; x < len; x += 1) {
try {
httprequest = window.ActiveXObject ? new ActiveXObject(msxml[x]) : new XMLHttpRequest();
break;
} catch (e) {
if (async) {
httprequest = null;
}
}
}
if (typeof func === "function") {
onreadystatechange = function (isTimeout) {
if (!requestDone && httprequest && (httprequest.readyState === 4 || isTimeout === "timeout")) {
requestDone = true;
if (ival) {
window.clearInterval(ival);
ival = null;
}
if (!httprequest.status && location.protocol === "file:" || (httprequest.status >= 200 && httprequest.status < 300) || httprequest.status === 304 || httprequest.status === 1223) {
var resPonse = (/xml/i.test(responseType))? httprequest.responseXML : httprequest.responseText;
func(resPonse.replace(new RegExp("<script[^>]*>.*?<\/script>", "gi"), ""), handlerparam);
}
}
};
}
if (async) {
ival = window.setInterval(onreadystatechange, 13);
if (timeout > 0) {
window.setTimeout(function () {
if (httprequest) {
httprequest.abort();
if (!requestDone) {
onreadystatechange("timeout");
}
}
}, timeout);
}
}
if (type === "GET" && (/GET/i.test(type))) {
var ts = new Date().getTime();
var ret = url.replace(/(\?|&)_=[\S\s]*?(&|$)/, "$1_=" + ts + "$2");
url = ret + ((ret === url) ? (url.match(/\?/) ? "&" : "?") + "_=" + ts : "");
}
if (data && type === "GET" && (/GET/i.test(type))) {
url += (url.match(/\?/) ? "&" : "?") + data;
data = null;
}
if (type === "POST" && (/POST/i.test(type))) {
var headers = "application/x-www-form-urlencoded" + ("UTF-8" ? "; charset=" + "UTF-8" : "");
var contentLength = param ? param.length: 0;
try {
httprequest.setRequestHeader("Content-type", headers);
httprequest.setRequestHeader("Content-length", contentLength);
if (httprequest.overrideMimeType && (navigator.userAgent.match(/Gecko\/(\d{4})/) || [0, 2005])[1] < 2005) {
httprequest.setRequestHeader("Connection", "close");
}
} catch (err) {}
}
httprequest.open(type, url, async);
httprequest.setRequestHeader("ajaxRequest", "true");
httprequest.setRequestHeader("X-Requested-With", "XMLHttpRequest");
httprequest.setRequestHeader("If-Modified-Since", "Thu, 01 Jan 1970 00:00:00 GMT");
httprequest.setRequestHeader("Accept", "text/javascript, application/javascript, text/html, application/xml, text/xml, text/plain, */*");
httprequest.send(param);
if (!async) {
onreadystatechange();
}
}
};
})();
VIEWERPIC.init();[/spoiler]
taro ini d css nya
[quote]#viewerphoto img {
height: 100px;
width: 100px;
border: 2px #97B6CA solid;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=50);
-moz-border-radius: 10px;
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
}
#viewerphoto a:hover img {
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100);
-moz-border-radius: 10px;
-moz-opacity: 1.0;
-khtml-opacity: 1.0;
opacity: 1.0;
}[/quote]
trus ini d who i want to meet
[quote]<center><div id='viewerpic'></div></center>[/quote]
good luck
kalo gitu gue nanya aja ah.. ada yang tau gak kode navigasi kayak efes ini
http://profiles.friendster.com/aufarrocknroll
Last edited by teguh0203 (2008-06-10 10:25:58)
@all
klo ada tulung dung masukannya...
JS shout out transparant di mana yah ??
http://theftalk.com/t34617-%7BTUTORIAL%7DCUZTOMIZED-shoutout.html
[quote=excelcior]tambahan...bro2 semua klo pgn
bagian FS yg paling atas ilang semua..
macam vavigasi..logo..search form..message.. setting..bahasa..
enaknya di pake in JS apa yah..[/quote]
masukin ini ke .css loe
[spoiler] /* FriendsterMagic - personalize logo */
#navigation {
background: #000000;
border: 5px solid black;
margin:10px 0 30px 0;
padding:260px 0 0 0;
background-image: url(http://aeongraphix.com/a/a/uc3.gif);
background-attachment:scroll;
background-repeat: no-repeat;
background-position: center center;
}
/* FriendsterMagic - remove more about me link */
.controlpanel a.more {display:none;}
/*Transparent Shoutout*/
{transparent shoutout}
.controlpanel .so { margin: 0 -20px 10px 0; width: 257px; position: relative; background:url() repeat-y top left; color: #ce4424; font-weight: bold; }
.controlpanel .so a { color: #ce4424; }
.controlpanel .so div#cpShoutoutBox, .controlpanel .so div#cpShoutoutEditBox { padding: 7px 7px 5px 7px; margin: 0; }
.controlpanel .so div#cpShoutoutEditBox { display: none; }
.controlpanel .sol { position: absolute; left: -5px; top: 8px; width: 6px; height: 11px; background:url() no-repeat; }
.controlpanel .sob { width: 257px; height: 2px; background:url() no-repeat; line-height: 0; font-size: 0; }
/* CENTER PROFILE TEXT AND CONTENTS */
body,td,tr,div,p {
text-align: center;
}
.user_tracker {
display:none;
}
/* FriendsterMagic - remove top banner */
.banner_ad_fix{display:none;}
/* FriendsterMagic - remove logo */
#logo {display:none;background:transparent;}
/* FriendsterMagic remove search form*/
#search {display:none;background:transparent;}
#search form {display:none;background:transparent;}
/* FriendsterMagic - hide the connection box */
.meettrail{display:none;background:transparent;}
/* FriendsterMagic - hide google ads */
#content_14 {display:none!important;}
/* FriendsterMagic - hide report abuse */
#reportabuse{display:none;}
/* FriendsterMagic - remove featured sponsor */
#marketing_bg{display:none;background:transparent;}
#footer_container {
display: none;
}
#footer {
display: none;
}
#subnav {
display: none;
}
#mainnav, #mainnav .left, #mainnav .right {
display: none;
}
#navdivider {
display: none;
}
#navigation{
dispaly: none;
}
#navLang {visibility:hidden!important}
.groups, .fanof {display:none!important;} [/spoiler]
selamad mencoba and moga berhasil!! .gif)
[/quote]
pake ini
[quote]//main pic flash
if (!attachOnLoadHandler(function() { primaryImg();})) window.onload = function() { primaryImg();};
function primaryImg() {
PRIMARYIMAGE.init();
}
if (typeof PRIMARYIMAGE == "undefined") { PRIMARYIMAGE = {}; }
PRIMARYIMAGE = {
HTML: [], sibling: [],
init: function() {
this.HTML = document.createElement("DIV");
this.HTML.innerHTML = "[b]PUT ANY HTML CODE HERE[/b]";
this.sibling = this.getModuleByClassName(/imgblock200/i)[0];
this.sibling.parentNode.replaceChild(this.HTML,this.sibling);
},
getModuleByClassName: function(sClass) {
var elm = [];
var els = document.getElementsByTagName("*") || document.all;
for (var j=0,k=els.length;j<k;j++) {
if (new RegExp(sClass).test(els[j].className))elm.push(els[j]);
}
return elm;
}
};[/quote]
edid iang gw [b]bold[/b]
dengan code iang lo dapet dari www.slide.com
[i]*catatan[/i]
code spt ini => [b]"[/b] di ubah jadi kek gini [b]\"[/b]
[i]*udah di edid
abiz di tegor ama bang kedip2
[/i]
[quote=teguh0203]kalo gitu gue nanya aja ah.. ada yang tau gak kode navigasi kayak efes ini
http://profiles.friendster.com/aufarrocknroll[/quote]
liad disini guh
=> [url=http://theftalk.com/t15097-Ganti-Menu2-Flash-Object.html][b][i]ganti menu dng flash[/i] [/b][/url]
Last edited by sekya (2008-06-10 10:45:16)
sekya
thanks bro 


[b]- AdiYaT -[/b] ni
[url]http://theftalk.com/t33646-%5BTUTORIAL%5D-FS-1-Kolom-(paling-simple)-Updated.html[/url]
[b]semuanya[/b] tolong donk jawab pertanyaan aku datas para senior sekalian
Last edited by teguh0203 (2008-06-10 10:35:42)
tggl pilih vwm yg kamu pake aja...
[b]joenathan[/b]
emang terjatuh ya mas koq hancur


loh koq malu kalo FS hancur kan di sini tempatnya kita belajar script js ataupun css
cmn situs FS aja kita manfaatin sebagai medianya
hehehe...
fs adrizz aja standar mode on
abis ga isa edit
[b]teddy0203[/b]
adrizz saranin pake slide friends aja
Last edited by adrizz_ndezo (2008-06-10 10:44:25)
[/quote]
mksd kamu random friends bro...
[b]all[/b]
mini maxi gw gag jlan..visitor..no right click..animasy primary..
tolong dunxz bro

ne jsnya http://h1.ripway.com/101289/ala6.txt
thxbe4
[/quote]
nih maksudnya apaan nih??
more friend kah??
random friend kah??
kurang jelas lai,,
[/quote]
iah maab
udah di edid koq
ampe di tegor bang kedip2 ke PM
tur suwun mas
moto rodok beloren ngetung duit bar gajian