Advertisement
ayoi99

Ayoi Script

Jul 31st, 2015
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.23 KB | None | 0 0
  1. <script language="JavaScript1.2">
  2. function ejs_nodroit()
  3. {
  4. return(false);
  5. }
  6.  
  7. document.oncontextmenu = ejs_nodroit;
  8. </script>
  9. <style type="text/css">
  10. body{
  11. background-color:rgb(0,0,0);
  12. background-image:url(https://fbcdn-sphotos-b-a.akamaihd.net/hphotos-ak-xpa1/v/t1.0-9/10438450_556508681117531_5437472010171220901_n.jpg?oh=b00df71631ce49ffc495db809e6056b8&oe=54CAB099&__gda__=1421000737_a62016d38af4f7e7c4bd4cc99acd746f);
  13. background-position:top left;
  14. background-size:100% 100%;
  15. background-repeat:no-repeat;
  16. background-attachment:fixed;
  17. }
  18. h1 {color: #333;font-size: 80px;margin: 1px auto;text-align:center;text-transform:uppercase;}
  19. .neon {color: #FFFFFF;text-shadow: 0 0 5px #1ab4e7, 0 0 10px #1ab4e7, 0 0 30px #18a2d0, 0 0 45px #18a2d0, 0 0 60px #18a2d0;}
  20. .matrix {color: #FFFFFF; font-family:Arial, Courier, Monotype; font-size:10pt; text-align:center; width:10px; padding:0px; margin:0px;}
  21. .auto-style1 { text-align: center;}
  22. .auto-style2 {
  23. text-align: center;
  24. color: #5BEEFF;
  25. }
  26. .auto-style3 {
  27. color: #545454;
  28. font-size: medium;
  29. }
  30. .auto-style6 {
  31. color: #545454;
  32. }
  33. .auto-style8 {
  34. text-align: center;
  35. font-family: Arial;
  36. }
  37. .auto-style9 {
  38. font-size: xx-large;
  39. }
  40. .auto-style10 {
  41. color: #B7B7B7;
  42. }
  43. </style>
  44. <script type="text/javascript">
  45. <!--
  46. //Disable right click script
  47. //visit http://www.rainbow.arch.scriptmania.com/scripts/
  48. var message="Sorry, right-click has been disabled";
  49. ///////////////////////////////////
  50. function clickIE() {if (document.all) {(message);return false;}}
  51. function clickNS(e) {if
  52. (document.layers||(document.getElementById&&!document.all)) {
  53. if (e.which==2||e.which==3) {(message);return false;}}}
  54. if (document.layers)
  55. {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
  56. else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
  57. document.oncontextmenu=new Function("return false")
  58. // -->
  59. </script>
  60. <SCRIPT type="text/javascript">if (typeof document.onselectstart!="undefined") {document.onselectstart=new Function ("return false");}else{document.onmousedown=new Function ("return false");document.onmouseup=new Function ("return true");}</SCRIPT>
  61. <!-- <script language="JavaScript1.2" type="text/javascript">
  62. function ClearError() {return true;}
  63. window.onerror = ClearError;
  64. </script> -->
  65. <script type="text/javascript" language="javascript">
  66. <!--
  67. var rows=5; // must be an odd number
  68. var speed=10; // lower is faster
  69. var reveal=2; // between 0 and 2 only. The higher, the faster the word appears
  70. var effectalign="center" //enter "center" to center it.
  71.  
  72. /***********************************************
  73. * The Matrix Text Effect- by Richard Womersley (http://www.mf2fm.co.uk/rv)
  74. * This notice must stay intact for use
  75. * Visit http://www.dynamicdrive.com/ for full source code
  76. ***********************************************/
  77.  
  78. var w3c=document.getElementById && !window.opera;;
  79. var ie45=document.all && !window.opera;
  80. var ma_tab, matemp, ma_bod, ma_row, x, y, columns, ma_txt, ma_cho;
  81. var m_coch=new Array();
  82. var m_copo=new Array();
  83. window.onload=function() {
  84. if (!w3c && !ie45) return
  85. var matrix=(w3c)?document.getElementById("matrix"):document.all["matrix"];
  86. ma_txt=(w3c)?matrix.firstChild.nodeValue:matrix.innerHTML;
  87. ma_txt=" "+ma_txt+" ";
  88. columns=ma_txt.length;
  89. if (w3c) {
  90. while (matrix.childNodes.length) matrix.removeChild(matrix.childNodes[0]);
  91. ma_tab=document.createElement("table");
  92. ma_tab.setAttribute("border", 0);
  93. ma_tab.setAttribute("align", effectalign);
  94. ma_bod=document.createElement("tbody");
  95. for (x=0; x<rows; x++) {
  96. ma_row=document.createElement("tr");
  97. for (y=0; y<columns; y++) {
  98. matemp=document.createElement("td");
  99. matemp.setAttribute("id", "Mx"+x+"y"+y);
  100. matemp.className="matrix";
  101. matemp.appendChild(document.createTextNode(String.fromCharCode(160)));
  102. ma_row.appendChild(matemp);
  103. }
  104. ma_bod.appendChild(ma_row);
  105. }
  106. ma_tab.appendChild(ma_bod);
  107. matrix.appendChild(ma_tab);
  108. } else {
  109. ma_tab='<ta'+'ble align="'+effectalign+'" border="0" style="background-color:#000000">';
  110. for (var x=0; x<rows; x++) {
  111. ma_tab+='<t'+'r>';
  112. for (var y=0; y<columns; y++) {
  113. ma_tab+='<t'+'d class="matrix" id="Mx'+x+'y'+y+'"> </'+'td>';
  114. }
  115. ma_tab+='</'+'tr>';
  116. }
  117. ma_tab+='</'+'table>';
  118. matrix.innerHTML=ma_tab;
  119. }
  120. ma_cho=ma_txt;
  121. for (x=0; x<columns; x++) {
  122. ma_cho+=String.fromCharCode(32+Math.floor(Math.random()*94));
  123. m_copo[x]=0;
  124. }
  125. ma_bod=setInterval("mytricks()", speed);
  126. }
  127.  
  128. function mytricks() {
  129. x=0;
  130. for (y=0; y<columns; y++) {
  131. x=x+(m_copo[y]==100);
  132. ma_row=m_copo[y]%100;
  133. if (ma_row && m_copo[y]<100) {
  134. if (ma_row<rows+1) {
  135. if (w3c) {
  136. matemp=document.getElementById("Mx"+(ma_row-1)+"y"+y);
  137. matemp.firstChild.nodeValue=m_coch[y];
  138. }
  139. else {
  140. matemp=document.all["Mx"+(ma_row-1)+"y"+y];
  141. matemp.innerHTML=m_coch[y];
  142. }
  143. matemp.style.color="#81F2FF";
  144. matemp.style.fontWeight="bold";
  145. }
  146. if (ma_row>1 && ma_row<rows+2) {
  147. matemp=(w3c)?document.getElementById("Mx"+(ma_row-2)+"y"+y):document.all["Mx"+(ma_row-2)+"y"+y];
  148. matemp.style.fontWeight="normal";
  149. matemp.style.color="#00BBFF";
  150. }
  151. if (ma_row>2) {
  152. matemp=(w3c)?document.getElementById("Mx"+(ma_row-3)+"y"+y):document.all["Mx"+(ma_row-3)+"y"+y];
  153. matemp.style.color="#20FFDA";
  154. }
  155. if (ma_row<Math.floor(rows/2)+1) m_copo[y]++;
  156. else if (ma_row==Math.floor(rows/2)+1 && m_coch[y]==ma_txt.charAt(y)) zoomer(y);
  157. else if (ma_row<rows+2) m_copo[y]++;
  158. else if (m_copo[y]<100) m_copo[y]=0;
  159. }
  160. else if (Math.random()>0.9 && m_copo[y]<100) {
  161. m_coch[y]=ma_cho.charAt(Math.floor(Math.random()*ma_cho.length));
  162. m_copo[y]++;
  163. }
  164. }
  165. if (x==columns) clearInterval(ma_bod);
  166. }
  167.  
  168. function zoomer(ycol) {
  169. var mtmp, mtem, ytmp;
  170. if (m_copo[ycol]==Math.floor(rows/2)+1) {
  171. for (ytmp=0; ytmp<rows; ytmp++) {
  172. if (w3c) {
  173. mtmp=document.getElementById("Mx"+ytmp+"y"+ycol);
  174. mtmp.firstChild.nodeValue=m_coch[ycol];
  175. }
  176. else {
  177. mtmp=document.all["Mx"+ytmp+"y"+ycol];
  178. mtmp.innerHTML=m_coch[ycol];
  179. }
  180. mtmp.style.color="#5BEEFF";
  181. mtmp.style.fontWeight="bold";
  182. }
  183. if (Math.random()<reveal) {
  184. mtmp=ma_cho.indexOf(ma_txt.charAt(ycol));
  185. ma_cho=ma_cho.substring(0, mtmp)+ma_cho.substring(mtmp+1, ma_cho.length);
  186. }
  187. if (Math.random()<reveal-1) ma_cho=ma_cho.substring(0, ma_cho.length-1);
  188. m_copo[ycol]+=199;
  189. setTimeout("zoomer("+ycol+")", speed);
  190. }
  191. else if (m_copo[ycol]>200) {
  192. if (w3c) {
  193. mtmp=document.getElementById("Mx"+(m_copo[ycol]-201)+"y"+ycol);
  194. mtem=document.getElementById("Mx"+(200+rows-m_copo[ycol]--)+"y"+ycol);
  195. }
  196. else {
  197. mtmp=document.all["Mx"+(m_copo[ycol]-201)+"y"+ycol];
  198. mtem=document.all["Mx"+(200+rows-m_copo[ycol]--)+"y"+ycol];
  199. }
  200. mtmp.style.fontWeight="normal";
  201. mtem.style.fontWeight="normal";
  202. setTimeout("zoomer("+ycol+")", speed);
  203. }
  204. else if (m_copo[ycol]==200) m_copo[ycol]=100+Math.floor(rows/2);
  205. if (m_copo[ycol]>100 && m_copo[ycol]<200) {
  206. if (w3c) {
  207. mtmp=document.getElementById("Mx"+(m_copo[ycol]-101)+"y"+ycol);
  208. mtmp.firstChild.nodeValue=String.fromCharCode(160);
  209. mtem=document.getElementById("Mx"+(100+rows-m_copo[ycol]--)+"y"+ycol);
  210. mtem.firstChild.nodeValue=String.fromCharCode(160);
  211. }
  212. else {
  213. mtmp=document.all["Mx"+(m_copo[ycol]-101)+"y"+ycol];
  214. mtmp.innerHTML=String.fromCharCode(160);
  215. mtem=document.all["Mx"+(100+rows-m_copo[ycol]--)+"y"+ycol];
  216. mtem.innerHTML=String.fromCharCode(160);
  217. }
  218. setTimeout("zoomer("+ycol+")", speed);
  219. }
  220.  
  221. //start
  222. var h1 = document.getElementsByTagName("h1")[0],
  223. text = h1.innerText || h1.textContent,
  224. split = [], i, lit = 0, timer = null;
  225. for(i = 0; i < text.length; ++i) {
  226. split.push("<span>" + text[i] + "</span>");
  227. }
  228. h1.innerHTML = split.join("");
  229. split = h1.childNodes;
  230.  
  231. var flicker = function() {
  232. lit += 0.01;
  233. if(lit >= 1) {
  234. clearInterval(timer);
  235. }
  236. for(i = 0; i < split.length; ++i) {
  237. if(Math.random() < lit) {
  238. split[i].className = "neon";
  239. } else {
  240. split[i].className = "";
  241. }
  242. }
  243. }
  244. setInterval(flicker, 100);
  245.  
  246. }
  247. //strat sec
  248.  
  249. // end -->
  250. </script>
  251. <!-- <script type="text/javascript">/*<![CDATA[*/ TypingText = function(element, interval, cursor, finishedCallback) { if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) { this.running = true; 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); return; } if(this.currentText == "") this.element.innerHTML = ""; 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>
  252. <link href='http://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700' rel='stylesheet' type='text/css'> </link> -->
  253. <!-- <script type="text/javascript">
  254. </script> -->
  255. <script id="97BC4A9A6218E9CD"></script></head>
  256. <body style="color: #Green; background-color: #000000">
  257. <h1>SHIELD WAS HERE</h1>
  258. <div id="matrix" class="auto-style8">
  259. </div>
  260.  
  261. </style>
  262. <center><embed width="760" height="80" align="middle" flashvars="letter= Ayoi Wxlf" src="http://www.widgeo.net/effets/3.swf" quality="high" wmode="transparent" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" color="lime"</center>
  263.  
  264.  
  265.  
  266.  
  267. <body BGCOLOR="http://siliconangle.com/files/2011/06/anonymoushacksmalaysia.png">
  268.  
  269. <title> AYoi </title>
  270.  
  271.  
  272. <footer id="det" style="position:fixed; left:0px; right:0px; bottom:0px; background:rgb(0,0,0); text-align:center; border-top: 1px solid #048c01; border-bottom: 1px solid #048c01"><font color="#58FAF4" face="Tahoma" size="2"><font color="58FAF4"><b>We are : </b></font>
  273. <marquee scrollamount="5" scrolldelay="50" width="80%"><b> Ayoi Wxlf - V For Vandetta - Dak MC - Afnan - Zeref - All Malaysia Hackers </b></marquee> </font></footer>
  274. </marquee>
  275.  
  276.  
  277. <EMBED SRC="http://divine-music.info/musicfiles/Eminem - Not Afraid (prod. Boi-1da)(1).swf" AUTOSTART="TRUE" LOOP="TRUE" WIDTH="1" HEIGHT="1" ALIGN="CENTER"></EMBED>
  278.  
  279. <script language="JavaScript" src="http://blog-rangga.googlecode.com/files/kameracctv.js" type="text/javascript"> </script> <script language="JavaScript" type="text/javascript"> cot("http://1.bp.blogspot.com/-jyICA3F7eOo/TbBE4YBgbpI/AAAAAAAAAEM/XU9sJQnzGvU/s1600/cctv.gif")</script>
  280.  
  281. <center><img src="http://siliconangle.com/files/2011/06/anonymoushacksmalaysia.png?oh=7f0db7e88d1cb5e8dcd7f30fa1c34ce5&oe=54B0C43A"></center>
  282. <font style="color:black;font size:9px;text-align: center;font-family:Pirata One;text-shadow: 3px 3px 3px red;"><font size="10" font-family="Pirata One" color="white">Silent Hacker Indivindu Expert Light Defend WAS HERE</font>
  283. <center><font style="color:blue;font size:7px;text-align: center;font-family:calibry;text-shadow: 0 0 10px #17f806, 0px 0px 5px #17f806,0 0 10px #17f806,0 0 5px #17f806;"><font size="5" font-family="Shonar Bangla" color="black"> Greetz : AYoiObey </font></font>
  284. <center><font style="color:Green;font size:9px;text-align: center;font-family:Pirata One;text-shadow: 2px 1px 2px white;"><font size="10" font-family="Pirata One" color="yellow"><a href= https://www.facebook.com/encikwarden /> </font><b> Page Owner </font></font></b><br><br><br>
  285.  
  286.  
  287. <link rel="shortcut icon" href="https://scontent-a-sea.xx.fbcdn.net/hphotos-xaf1/v/t1.0-9/1800265_556515311116868_5046013518209942867_n.jpg?oh=633ddcb7d3379849f5af6c0f4de5990f&oe=54B7A263" />
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement