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-
[quote=emonial]ituloh omz kalau shout kita kan biasanya text nya di model marquee...tapi aku pengen yg jumping text jadi text nya itu loncat loncat omz
akuw butuh code itu omz[/quote]
yg ini tarh di bagian C
[spoiler]//jump
function animateText(){
function jump1a(){
var i=0;
var loopy = setInterval(function(){
if (i==6) {
clearInterval(loopy);
jump2();
}
else n0.style.left= [-3,-6,-9,-6,-3,0][i++];
}, 50);
};
var num=0;
function jump2(){
txt="";
for(var i=0; i<message.length; i++){
if (i+num > -1 && i+num < 8){
document.getElementById('n'+i).style.top = [-1,-4,-7,-10,-7,-4,-1,0][i+num];
}
}
if(num != (-message.length)){
num--;
setTimeout(jump2,50)
}
else{
num=0;
setTimeout(jump1a,2000)
}
};
var jump = document.getElementById('jump');
var message = jump.innerHTML;
if (message.length > 6){
var txt="";
for(var i=0; i<message.length; i++){
txt += '<SPAN style="position:relative;top:0;" id="n'+i+'">'+message.charAt(i)+'</SPAN>';
}
jump.innerHTML=txt;
txt="";
jump1a()
}
}[/spoiler]
trus yg ini buat di bagian B
[spoiler]var dk09 = "<B id=\"jump\">[color=#ff0000]KATA KATA KAMU[/color]</B>";
document.getElementById('cpShoutoutBox').style.height='100%';
document.getElementById('cpShoutoutBox').style.overflowY='hidden';
document.getElementById('cpShoutoutBox').innerHTML = "<table width='100%'><tr><td align='center'>"+dk09+"</td></tr></table>";
animateText();[/spoiler]