Scrip

<html>
<head>
<title>..// angkara poenya may</title><link rel="SHORTCUT ICON" href="http://i472.photobucket.com/albums/rr90/babycorp/indonesia.gif">
</head><center>
<SCRIPT> 
var width=document.body.clientWidth;
var height=document.body.clientHeight;
 
function doClickText(who,type,step,timeOut) {
document.getElementById(who).style.display="none";
if(type==0) {
reveal('revealDiv1',step,timeOut,0);
reveal('revealDiv2',step,timeOut,1);}
if(type==1) {
reveal('revealDiv1',step,timeOut,2);
reveal('revealDiv2',step,timeOut,3);}}
function reveal(who,step,timeOut,type) {
if(type==0)
var where="top";
if(type==1)
var where="bottom";
if(type==2)
var where="left";
if(type==3)
var where="right";
eval('var temp=document.getElementById(who).style.'+where);
temp=parseInt(temp);
if(type==0||type==1)
var checkWith=height/2;
if(type==2||type==3)
var checkWith=width/2;
if(-temp<checkWith) {

temp-=step;

eval('document.getElementById(who).style.'+where+'=temp;');

setTimeout("reveal('"+who+"',"+step+",'"+timeOut+"',"+type+")", timeOut);}

else {

document.getElementById(who).style.display="none";

document.body.scroll="yes";}}

function initReveal(type,div1bg,div2bg,div1bw,div2bw,div1bc,div2bc,step,timeOut,click) {

if(type==0) {

var bWhere1="border-bottom";

var bWhere2="border-top";

var putZero1="top:0px; left:0px";

var putZero2="bottom:0px; left:0px";

document.write('<div id="revealDiv1" style="z-index:100; display:block; position:absolute; '+putZero1+'; background:'+div1bg+' ; width:'+(width)+'; height:'+(height/2)+'; '+bWhere1+':'+div1bc+' solid '+div1bw+'px"></div>');
document.write('<div id="revealDiv2" style="z-index:100; display:block; position:absolute; '+putZero2+'; background:'+div2bg+' ; width:'+(width)+'; height:'+(height/2)+'; '+bWhere2+':'+div2bc+' solid '+div2bw+'px"></div>');
if(!click) {
reveal('revealDiv1',step,timeOut,0);
reveal('revealDiv2',step,timeOut,1);}
 
else {
clickText(type,step,timeOut);}}
 
if(type==1) {
var bWhere1="border-right";
var bWhere2="border-left";
var putZero1="top:0px; left:0px";
var putZero2="top:0px; right:0px";
document.write('<div id="revealDiv1" style="z-index:100; display:block; position:absolute; '+putZero1+'; background:'+div1bg+' ; width:'+(width/2)+'; height:'+(height)+'; '+bWhere1+':'+div1bc+' solid '+div1bw+'px"></div>');
document.write('<div id="revealDiv2" style="z-index:100; display:block; position:absolute; '+putZero2+'; background:'+div2bg+' ; width:'+(width/2)+'; height:'+(height)+'; '+bWhere2+':'+div2bc+' solid '+div2bw+'px"></div>');
if(!click) {
reveal('revealDiv1',step,timeOut,2);
reveal('revealDiv2',step,timeOut,3);}
else {
clickText(type,step,timeOut);}}
function clickText(type,step,timeOut) {
document.write('<div id="clickText" style="z-index:101; display:block; position:absolute; top:'+(height/2-clickh/2-clickb)+'; left:'+(width/2-clickw/2-clickb)+'"><table style="border:'+clickc+' solid '+clickb+'px; background:'+clickbg+' ;width:'+clickw+'px; height:'+clickh+'; '+clickFont+'; cursor:hand; cursor:pointer" onClick="doClickText('clickText','+type+','+step+','+timeOut+')"><tr><td align="middle">'+clickt+'</td></tr></table></div>');}}
 
</SCRIPT>

<SCRIPT> 
var clickw=270;
var clickh=50;
var clickb=2;
var clickc="black";
var clickbg="black"; // Background color
var clickt="=[[ <blink>P L A Y</blink>  ]]="; // Text to display
var clickFont="font-family:Tahoma,arial,helvetica; font-size:10pt; font-weight:bold; color:red"; // The font style of the text
new initReveal(0,'black','black',1,1,'lime','lime',3,10,true);
</SCRIPT>


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="<$BlogLanguageDirection$>">

<script>

TypingText = function(element, interval, cursor, finishedCallback) {

  if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {

    this.running = true;  // Never run.

    return;

  }

  this.element = element;

  this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });

  this.interval = (typeof interval == "undefined" ? 100 : interval);

  this.origText = this.element.innerHTML;

  this.unparsedOrigText = this.origText;

  this.cursor = (cursor ? cursor : "");

  this.currentText = "";

  this.currentChar = 0;

  this.element.typingText = this;

  if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;

  TypingText.all.push(this);

  this.running = false;

  this.inTag = false;

  this.tagBuffer = "";

  this.inHTMLEntity = false;

  this.HTMLEntityBuffer = "";

}

TypingText.all = new Array();

TypingText.currentIndex = 0;

TypingText.runAll = function() {

  for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();

}

TypingText.prototype.run = function() {

  if(this.running) return;

  if(typeof this.origText == "undefined") {

    setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);  // We haven't finished loading yet.  Have patience.

    return;

  }

  if(this.currentText == "") this.element.innerHTML = "";

//  this.origText = this.origText.replace(/<([^<])*>/, "");     // Strip HTML from text.

  if(this.currentChar < this.origText.length) {

    if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {

      this.tagBuffer = "<";

      this.inTag = true;

      this.currentChar++;

      this.run();

      return;

    } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {

      this.tagBuffer += ">";

      this.inTag = false;

      this.currentText += this.tagBuffer;

      this.currentChar++;

      this.run();

      return;

    } else if(this.inTag) {

      this.tagBuffer += this.origText.charAt(this.currentChar);

      this.currentChar++;

      this.run();

      return;

 } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {

      this.HTMLEntityBuffer = "&";

      this.inHTMLEntity = true;

      this.currentChar++;

      this.run();

      return;

    } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {

      this.HTMLEntityBuffer += ";";

      this.inHTMLEntity = false;

      this.currentText += this.HTMLEntityBuffer;

      this.currentChar++;

      this.run();

      return;

    } else if(this.inHTMLEntity) {

      this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);

      this.currentChar++;

      this.run();

      return;

    } else {

      this.currentText += this.origText.charAt(this.currentChar);

    }

    this.element.innerHTML = this.currentText;

    this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");

    this.currentChar++;

    setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);

  } else {

  this.currentText = "";



 

this.currentChar = 0;

        this.running = false;

        this.finishedCallback();

  }

}

</script>

 
<br><left>

<div id="example1"></div>

<p id="example2">
 <span style="font-size: 0px;"><font color="blue" face="Harrington">*************************************************************************************************************</font><span></span></span></b><br>
 <span style="font-size: 19px"><font face="Tempus" color="lime">To : Sahabat Ku Yang Dulu<br>
<br>
<br>
ingin ku katakan selamat malam pada mu<br>
sedang aku tahu kau tidak di sini bersama ku,<br>
tapi bermil-batu jauhnya, dr ku<br>
Hatiku begitu kosong dan kesepian tanpa mu<br>
Saat aku menghapus air mata ,ku cuba untuk bersembunyi.<br>

Aku coba memejamkan mata dan melupakan mu seketika.<br>
Tetapi dengan kesedihan di dalam aku mula menangis.<br>
Tiba-tiba aku ingat apa yang pernah kau katakan pada ku<br>
pandanglah bintang bila kau rindu pada ku<br>
tataplah bulan bila kau ingin betemu..aku terus dan terus menunggu tanpa jemu<br>

Ketika jarak cenderung membuat kita terpisah,<br>
aku akan tetap mempertahankan mu senantiasa ada di hati ku<br>
Ketika malam bersama-sama, tidak boleh menjadi milik kita,<br>
Hanya menutup mata kau dan aku bertemu di atas hamparan bintang-bintang.<br>
ku terbayang senyum mu,mengantar tidur ku<br>
Dan dengan lembut ku tutup mata ku,terasa kau dekat dg ku<br>
betapa indah taburan bintang,mengihiasi gelapnya malam<br>
Tapi kau tidak ada....., tidak ada...dlm pelukan ...<br>
<br>
Aku duduk sendiri menunggu, dengan harapan dalam hatiku,<br>
Tidak lagi ingin disimpan kesepian...yg memanjang..<br>
Tiba-tiba di kejauhan, bayangan yang muncul,di depan ku<br>
Sebuah air mata gulungan di wajah ku dan gambar wajah mu terlihat jelas.<br>
dalam fikiran ku...AKU MERINDUI MU...<br>

<br>
<br>
By : Agkara poenya may<br>

 </font><span><br>
</p>

<script type="text/javascript">

//Define first typing example:

new TypingText(document.getElementById("example1"));

//Define second typing example (use "slashing" cursor at the end):

new TypingText(document.getElementById("example2"), 80, function(i){

var ar = new Array("_"," ","_","_"); return " " + ar[i.length %

ar.length]; });

//Type out examples:

TypingText.runAll();


</script>

<style type="text/css">body {cursor:url("http://i1268.photobucket.com/albums/jj575/antonio12324/rosethin.png"),default}</style>




<link rel="icon" type="image/gif" href="http://i48.servimg.com/u/f48/16/08/07/74/indone10.gif">

<body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;'>
<body style="background-color:#000;background-image:url(http://www.azamku.com/wp-content/uploads/2012/05/background-animasi-bergerak-gif-kumpulan-animasi-gif.gif);background-repeat:repeat-y;background-position:top right ;">
<script type="text/javascript" src="http://cayunkatel.googlecode.com/files/rainbows.js"></script>
<script type="text/javascript" src="http://www.sis-kj.com/js/3.js"></script> 
<span id="fullpost"><script src='http://agungosx.googlepages.com/saljubirumuda.js' type='text/javascript'></script></span>
<span id="fullpost"><script src='http://agungosx.googlepages.com/saljuputih.js' type='text/javascript'></script></span>
<div style="text-align: center;">
</body>
</html>


Cara Pemasangannya:
  1. Buka Notepad pada komputer anda...
  2. Copy semua Script Di atas sampai selesai...
  3. paste kan script yang habis di copy tadi ke Notepad anda...
  4. Save As dengan menggunakan kode html. Misal "Love.html" atau nama yang lain terserah anda masing-masing.
  5. silahkan anda kreasikan lagi biar keren lagi walaupun aslinya sudah keren.... wkwkwwwk :P
pengin scrip yang lebih keren....???? Silahkan teman 

DOWNLOAD DISINI

Demikianlah sharing singkat dari saya semoga bisa bermanfaat dan menjadi pengetahuan untuk kita semua...

saya mengharapkan sekali pada teman-teman  untuk ikut serta berbagi pengalaman,ilmu yang dimiliki, serta membuat komunitas sharing ini menjadi lebih baik...

Di komunitas  ini siapapun dapat menambahkan ilmunya disini..

karena disini kita saling berbagi dan belajar bersama..

 

*BERBAGI ITU INDAH*



This website was built using N.nu - try it yourself for free.