Advertisement
Ribang

Script baru 4 matrix kotak

Jan 24th, 2017
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.69 KB | None | 0 0
  1.  
  2.  
  3.  
  4. <title>HAWKZONE</title>
  5. <meta name="description" content="WELCOME TO THE HAWKZONE" />
  6. <link rel="SHORTCUT ICON" href="http://img11.deviantart.net/e49f/i/2015/064/0/1/red_hawk_logo_by_irufort-d8ki468.png">
  7. <iframe scrolling="no" src="https://www.youtube.com/embed/Ty-KjASJStU?rel=0&amp;autoplay=1" frameborder="no" height="0" width="0%"></iframe>
  8. <link href='https://fonts.googleapis.com/css?family=Atomic+Age' rel='stylesheet' type='text/css'><body bgcolor="black">
  9. <strong>
  10. <script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"></script>
  11. <center><img style="width:250px;" src="https://s30.postimg.org/rfd10x8rl/FAC.png" />
  12. <script src='http://misbahudin-dcaesga.googlecode.com/files/efek-salju.js'/><script>
  13. setInterval(function(){
  14. $(".berkedip").toggle();
  15. },300);
  16. </script>
  17. <style>
  18. body{
  19. text-align: center;
  20. font-size: 12px;
  21. font-family: verdana;
  22. background-color: black;
  23. background: url('https://media.giphy.com/media/xTiTnxpQ3ghPiB2Hp6/giphy.gif') repeat center center fixed black;
  24. }
  25.  
  26. </style>
  27. <script>
  28.  
  29. TypingText = function(element, interval, cursor, finishedCallback) {
  30.  
  31. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  32.  
  33. this.running = true; // Never run.
  34.  
  35. return;
  36.  
  37. }
  38.  
  39. this.element = element;
  40.  
  41. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  42.  
  43. this.interval = (typeof interval == "undefined" ? 100 : interval);
  44.  
  45. this.origText = this.element.innerHTML;
  46.  
  47. this.unparsedOrigText = this.origText;
  48.  
  49. this.cursor = (cursor ? cursor : "");
  50.  
  51. this.currentText = "";
  52.  
  53. this.currentChar = 0;
  54.  
  55. this.element.typingText = this;
  56.  
  57. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  58.  
  59. TypingText.all.push(this);
  60.  
  61. this.running = false;
  62.  
  63. this.inTag = false;
  64.  
  65. this.tagBuffer = "";
  66.  
  67. this.inHTMLEntity = false;
  68.  
  69. this.HTMLEntityBuffer = "";
  70.  
  71. }
  72.  
  73. TypingText.all = new Array();
  74.  
  75. TypingText.currentIndex = 0;
  76.  
  77. TypingText.runAll = function() {
  78.  
  79. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  80.  
  81. }
  82.  
  83. TypingText.prototype.run = function() {
  84.  
  85. if(this.running) return;
  86.  
  87. if(typeof this.origText == "undefined") {
  88.  
  89. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval); // We haven't finished loading yet. Have patience.
  90.  
  91. return;
  92.  
  93. }
  94.  
  95. if(this.currentText == "") this.element.innerHTML = "";
  96.  
  97. // this.origText = this.origText.replace(/<([^<])*>/, ""); // Strip HTML from text.
  98.  
  99. if(this.currentChar < this.origText.length) {
  100.  
  101. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  102.  
  103. this.tagBuffer = "<";
  104.  
  105. this.inTag = true;
  106.  
  107. this.currentChar++;
  108.  
  109. this.run();
  110.  
  111. return;
  112.  
  113. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  114.  
  115. this.tagBuffer += ">";
  116.  
  117. this.inTag = false;
  118.  
  119. this.currentText += this.tagBuffer;
  120.  
  121. this.currentChar++;
  122.  
  123. this.run();
  124.  
  125. return;
  126.  
  127. } else if(this.inTag) {
  128.  
  129. this.tagBuffer += this.origText.charAt(this.currentChar);
  130.  
  131. this.currentChar++;
  132.  
  133. this.run();
  134.  
  135. return;
  136.  
  137. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  138.  
  139. this.HTMLEntityBuffer = "&";
  140.  
  141. this.inHTMLEntity = true;
  142.  
  143. this.currentChar++;
  144.  
  145. this.run();
  146.  
  147. return;
  148.  
  149. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  150.  
  151. this.HTMLEntityBuffer += ";";
  152.  
  153. this.inHTMLEntity = false;
  154.  
  155. this.currentText += this.HTMLEntityBuffer;
  156.  
  157. this.currentChar++;
  158.  
  159. this.run();
  160.  
  161. return;
  162.  
  163. } else if(this.inHTMLEntity) {
  164.  
  165. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  166.  
  167. this.currentChar++;
  168.  
  169. this.run();
  170.  
  171. return;
  172.  
  173. } else {
  174.  
  175. this.currentText += this.origText.charAt(this.currentChar);
  176.  
  177. }
  178.  
  179. this.element.innerHTML = this.currentText;
  180.  
  181. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  182.  
  183. this.currentChar++;
  184.  
  185. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  186.  
  187. } else {
  188.  
  189. this.currentText = "";
  190.  
  191. this.currentChar = 0;
  192.  
  193. this.running = false;
  194.  
  195. this.finishedCallback();
  196.  
  197. }
  198.  
  199. }
  200.  
  201. </script>
  202.  
  203. <center><p id="info"><font face="Iceland" size="8" font style="text-shadow: 0px 0px 30px blue;" color="white">st@mp3d by Hawk_B404<br></font>
  204.  
  205. <font face="Copperplate Gothic Bold" size="4" font style="text-shadow: 0px 0px 30px blue;" color="white"> <br></font>
  206.  
  207. <font face="Copperplate Gothic Bold" size="4" font style="text-shadow: 0px 0px 30px blue;" color="white">Message :<br></font>
  208.  
  209. <font face="Copperplate Gothic Bold" size="4" font style="text-shadow: 0px 0px 30px blue;" color="white"> <br></font>
  210.  
  211. <font face="MV Boli" size="4" font style="text-shadow: 0px 0px 30px blue;" color="white">Imagine never grateful people who like to complain<br></font>
  212.  
  213. <font face="MV Boli" size="4" font style="text-shadow: 0px 0px 30px blue;" color="white">but a lot of blessings that have been given to him<br></font>
  214.  
  215. <font face="MV Boli" size="4" font style="text-shadow: 0px 0px 30px blue;" color="white">Begin to always be grateful for what is good in your life<br></font>
  216.  
  217. <font face="MV Boli" size="4" font style="text-shadow: 0px 0px 30px blue;" color="white">and learn to be strong on all the bad things in your life<br></font>
  218.  
  219. <font face="MV Boli" size="4" font style="text-shadow: 0px 0px 30px blue;" color="white">Adorn your face with a smile<br></font>
  220.  
  221. <font face="MV Boli" size="4" font style="text-shadow: 0px 0px 30px blue;" color="white">because it is a form of gratitude for the pleasure<br></font>
  222.  
  223. <font face="MV Boli" size="4" font style="text-shadow: 0px 0px 30px blue;" color="white">LEARN TOGETHER TO BE BETTER<br></font>
  224.  
  225. <script type="text/javascript">
  226.  
  227. //Define first typing example:
  228.  
  229. //Define second typing example (use "slashing" cursor at the end):
  230.  
  231. new TypingText(document.getElementById("info"), 150, function(i){
  232.  
  233. var ar = new Array("_"," ","_","_"); return " " + ar[i.length %
  234.  
  235. ar.length]; });
  236.  
  237. //Type out examples:
  238.  
  239. TypingText.runAll();
  240.  
  241. </script></br>
  242.  
  243. </script>
  244. <script language=JavaScript>
  245. <!--
  246.  
  247. //Disable right mouse click Script
  248. //By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
  249. //For full source code, visit http://www.dynamicdrive.com
  250.  
  251. var message="Please Don't! :)";
  252.  
  253. ///////////////////////////////////
  254. function clickIE4(){
  255. if (event.button==2){
  256. alert(message);
  257. return false;
  258. }
  259. }
  260.  
  261. function clickNS4(e){
  262. if (document.layers||document.getElementById&&!document.all){
  263. if (e.which==2||e.which==3){
  264. alert(message);
  265. return false;
  266. }
  267. }
  268. }
  269.  
  270. if (document.layers){
  271. document.captureEvents(Event.MOUSEDOWN);
  272. document.onmousedown=clickNS4;
  273. }
  274. else if (document.all&&!document.getElementById){
  275. document.onmousedown=clickIE4;
  276. }
  277.  
  278. document.oncontextmenu=new Function("alert(message);return false")
  279.  
  280. // -->
  281. </script>
  282. <script type='text/javascript'>
  283. //<![CDATA[
  284. shortcut={all_shortcuts:{},add:function(a,b,c){var d={type:"keydown",propagate:!1,disable_in_input:!1,target:document,keycode:!1};if(c)for(var e in d)"undefined"==typeof c[e]&&(c[e]=d[e]);else c=d;d=c.target,"string"==typeof c.target&&(d=document.getElementById(c.target)),a=a.toLowerCase(),e=function(d){d=d||window.event;if(c.disable_in_input){var e;d.target?e=d.target:d.srcElement&&(e=d.srcElement),3==e.nodeType&&(e=e.parentNode);if("INPUT"==e.tagName||"TEXTAREA"==e.tagName)return}d.keyCode?code=d.keyCode:d.which&&(code=d.which),e=String.fromCharCode(code).toLowerCase(),188==code&&(e=","),190==code&&(e=".");var f=a.split("+"),g=0,h={"`":"~",1:"!",2:"@",3:"#",4:"$",5:"%",6:"^",7:"&",8:"*",9:"(",0:")","-":"_","=":"+",";":":","'":'"',",":"<",".":">","/":"?","\\":"|"},i={esc:27,escape:27,tab:9,space:32,"return":13,enter:13,backspace:8,scrolllock:145,scroll_lock:145,scroll:145,capslock:20,caps_lock:20,caps:20,numlock:144,num_lock:144,num:144,pause:19,"break":19,insert:45,home:36,"delete":46,end:35,pageup:33,page_up:33,pu:33,pagedown:34,page_down:34,pd:34,left:37,up:38,right:39,down:40,f1:112,f2:113,f3:114,f4:115,f5:116,f6:117,f7:118,f8:119,f9:120,f10:121,f11:122,f12:123},j=!1,l=!1,m=!1,n=!1,o=!1,p=!1,q=!1,r=!1;d.ctrlKey&&(n=!0),d.shiftKey&&(l=!0),d.altKey&&(p=!0),d.metaKey&&(r=!0);for(var s=0;k=f[s],s<f.length;s++)"ctrl"==k||"control"==k?(g++,m=!0):"shift"==k?(g++,j=!0):"alt"==k?(g++,o=!0):"meta"==k?(g++,q=!0):1<k.length?i[k]==code&&g++:c.keycode?c.keycode==code&&g++:e==k?g++:h[e]&&d.shiftKey&&(e=h[e],e==k&&g++);if(g==f.length&&n==m&&l==j&&p==o&&r==q&&(b(d),!c.propagate))return d.cancelBubble=!0,d.returnValue=!1,d.stopPropagation&&(d.stopPropagation(),d.preventDefault()),!1},this.all_shortcuts[a]={callback:e,target:d,event:c.type},d.addEventListener?d.addEventListener(c.type,e,!1):d.attachEvent?d.attachEvent("on"+c.type,e):d["on"+c.type]=e},remove:function(a){var a=a.toLowerCase(),b=this.all_shortcuts[a];delete this.all_shortcuts[a];if(b){var a=b.event,c=b.target,b=b.callback;c.detachEvent?c.detachEvent("on"+a,b):c.removeEventListener?c.removeEventListener(a,b,!1):c["on"+a]=!1}}},shortcut.add("Ctrl+U",function(){top.location.href="http://familyattackcyber.blogspot.com/"});
  285. //]]>
  286. </script>
  287. <footer id="det" style="position:fixed; left:0px; right:0px; bottom:0px; background:rgb(0,0,0); text-align:center; border-top: 1px solid #FFFFFF; border-bottom: 1px solid #FFFFFF"><font face="Monotype Corsiva" size="3" font style="text-shadow: 0px 0px 5px blue;" color="white"><font color="white">Sh00tz :</b></font><marquee scrollamount="5" scrolldelay="50" width="80%"><b>HMEI7 - Mr.Vendetta_404 - ./cOLI - Bl4cKB3K4SI - ./Mas.Br00 - GU3LT03M - MR.S1NS_Y - ./MIE_AYAM - Z31TZUK3 - Family Attack Cyber Official Member - Muslim Cyber Corporation - Indonesia Defacer Tersakiti Team - and All Muslim Defacer</b></marquee></font>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement