Pages

INDIAN TIME

YOU ARE VISITOR NO.

website counters

14 March 2013

NAME FALL FROM SKY (NEW) BY RAJ THE HACKER

Hello friends. I was busy Writing code for this.

Now try this code to use yourself.

But do not edit this code else it will not function.

every method and error console, tags, bolls etc are written in server code basic.


Just copy and paste the code below in Notepad and save it as RAJ.html







<html>
<head>

<style type="text/css">
.matrix { font-family:Lucida Console, Courier, Monotype; font-size:25pt; text-align:center; width:70px; padding:0px; margin:0px;}
</style>

<script type="text/javascript" language="JavaScript">

<!--
var rows=15;
var speed=50;
var reveal=2;
var effectalign="center"

/***********************************************
* The Effect was Coded by-Raj The Hacker
* Visit http://www.rajthehacker.blogspot.com/
***********************************************/

var w3c=document.getElementById && !window.firefox;;
var ie45=document.all && !window.firefox;
var Raj_tab, Raj_temp, Raj_Rani, Raj_Row, x, y, columns, Raj_Tesr, Raj_chodde;
var m_coch=new Array();
var m_copo=new Array();
window.onload=function() {
if (!w3c && !ie45) return
var matrix=(w3c)?document.getElementById("matrix"):document.all["matrix"];
Raj_Tesr=(w3c)?matrix.firstChild.nodeValue:matrix.innerHTML;
Raj_Tesr=" "+Raj_Tesr+" ";
columns=Raj_Tesr.length;
if (w3c) {
while (matrix.childNodes.length) matrix.removeChild(matrix.childNodes[0]);
Raj_tab=document.createElement("table");
Raj_tab.setAttribute("border", 0);
Raj_tab.setAttribute("align", effectalign);
Raj_tab.style.backgroundColor="#000000";
Raj_Rani=document.createElement("tbody");
for (x=0; x<rows; x++) {
Raj_Row=document.createElement("tr");
for (y=0; y<columns; y++) {
Raj_temp=document.createElement("td");
Raj_temp.setAttribute("id", "Mx"+x+"y"+y);
Raj_temp.className="matrix";
Raj_temp.appendChild(document.createTextNode(String.fromCharCode(160)));
Raj_Row.appendChild(Raj_temp);
}
Raj_Rani.appendChild(Raj_Row);
}
Raj_tab.appendChild(Raj_Rani);
matrix.appendChild(Raj_tab);
} else {
Raj_tab='<ta'+'ble align="'+effectalign+'" border="0" style="background-color:#000000">';
for (var x=0; x<rows; x++) {
Raj_tab+='<t'+'r>';
for (var y=0; y<columns; y++) {
Raj_tab+='<t'+'d class="matrix" id="Mx'+x+'y'+y+'">&nbsp;</'+'td>';
}
Raj_tab+='</'+'tr>';
}
Raj_tab+='</'+'table>';
matrix.innerHTML=Raj_tab;
}
Raj_chodde=Raj_Tesr;
for (x=0; x<columns; x++) {
Raj_chodde+=String.fromCharCode(32+Math.floor(Math.random()*94));
m_copo[x]=0;
}
Raj_Rani=setInterval("mytricks()", speed);
}

function mytricks() {
x=0;
for (y=0; y<columns; y++) {
x=x+(m_copo[y]==100);
Raj_Row=m_copo[y]%100;
if (Raj_Row && m_copo[y]<100) {
if (Raj_Row<rows+1) {
if (w3c) {
Raj_temp=document.getElementById("Mx"+(Raj_Row-1)+"y"+y);
Raj_temp.firstChild.nodeValue=m_coch[y];
}
else {
Raj_temp=document.all["Mx"+(Raj_Row-1)+"y"+y];
Raj_temp.innerHTML=m_coch[y];
}
Raj_temp.style.color="#33ff66";
Raj_temp.style.fontWeight="bold";
}
if (Raj_Row>1 && Raj_Row<rows+2) {
Raj_temp=(w3c)?document.getElementById("Mx"+(Raj_Row-2)+"y"+y):document.all["Mx"+(Raj_Row-2)+"y"+y];
Raj_temp.style.fontWeight="normal";
Raj_temp.style.color="#00ff00";
}
if (Raj_Row>2) {
Raj_temp=(w3c)?document.getElementById("Mx"+(Raj_Row-3)+"y"+y):document.all["Mx"+(Raj_Row-3)+"y"+y];
Raj_temp.style.color="#009900";
}
if (Raj_Row<Math.floor(rows/2)+1) m_copo[y]++;
else if (Raj_Row==Math.floor(rows/2)+1 && m_coch[y]==Raj_Tesr.charAt(y)) zoomer(y);
else if (Raj_Row<rows+2) m_copo[y]++;
else if (m_copo[y]<100) m_copo[y]=0;
}
else if (Math.random()>0.9 && m_copo[y]<100) {
m_coch[y]=Raj_chodde.charAt(Math.floor(Math.random()*Raj_chodde.length));
m_copo[y]++;
}
}
if (x==columns) clearInterval(Raj_Rani);
}

function zoomer(ycol) {
var mtmp, mtem, ytmp;
if (m_copo[ycol]==Math.floor(rows/2)+1) {
for (ytmp=0; ytmp<rows; ytmp++) {
if (w3c) {
mtmp=document.getElementById("Mx"+ytmp+"y"+ycol);
mtmp.firstChild.nodeValue=m_coch[ycol];
}
else {
mtmp=document.all["Mx"+ytmp+"y"+ycol];
mtmp.innerHTML=m_coch[ycol];
}
mtmp.style.color="#33ff66";
mtmp.style.fontWeight="bold";
}
if (Math.random()<reveal) {
mtmp=Raj_chodde.indexOf(Raj_Tesr.charAt(ycol));
Raj_chodde=Raj_chodde.substring(0, mtmp)+Raj_chodde.substring(mtmp+1, Raj_chodde.length);
}
if (Math.random()<reveal-1) Raj_chodde=Raj_chodde.substring(0, Raj_chodde.length-1);
m_copo[ycol]+=199;
setTimeout("zoomer("+ycol+")", speed);
}
else if (m_copo[ycol]>200) {
if (w3c) {
mtmp=document.getElementById("Mx"+(m_copo[ycol]-201)+"y"+ycol);
mtem=document.getElementById("Mx"+(200+rows-m_copo[ycol]--)+"y"+ycol);
}
else {
mtmp=document.all["Mx"+(m_copo[ycol]-201)+"y"+ycol];
mtem=document.all["Mx"+(200+rows-m_copo[ycol]--)+"y"+ycol];
}
mtmp.style.fontWeight="normal";
mtem.style.fontWeight="normal";
setTimeout("zoomer("+ycol+")", speed);
}
else if (m_copo[ycol]==200) m_copo[ycol]=100+Math.floor(rows/2);
if (m_copo[ycol]>100 && m_copo[ycol]<200) {
if (w3c) {
mtmp=document.getElementById("Mx"+(m_copo[ycol]-101)+"y"+ycol);
mtmp.firstChild.nodeValue=String.fromCharCode(160);
mtem=document.getElementById("Mx"+(100+rows-m_copo[ycol]--)+"y"+ycol);
mtem.firstChild.nodeValue=String.fromCharCode(160);
}
else {
mtmp=document.all["Mx"+(m_copo[ycol]-101)+"y"+ycol];
mtmp.innerHTML=String.fromCharCode(160);
mtem=document.all["Mx"+(100+rows-m_copo[ycol]--)+"y"+ycol];
mtem.innerHTML=String.fromCharCode(160);
}
setTimeout("zoomer("+ycol+")", speed);
}
}
</script>
</head>
<body>
<div id="matrix">RAJ_THE_HACKER
<div id="matrix">I LOVE YOU
</div>
</body>
</html>








THANKS
RAJ_THE_HACKER
8270859989

No comments:

Post a Comment

Give your Comments 2 me:
I would be in ur Support...

---Thanks ---
Raj_The_Hacker
8270859989

Raj_The_Hacker

Raj_The_Hacker
This is my Image

Popular Posts by RAJ