Advertisement
Ribang

script galau pemandangan fix

Jan 22nd, 2017
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.97 KB | None | 0 0
  1. <html>
  2.  
  3. <title> Hacked by Firewal21 </title>
  4. <head><script src="http://masterendi.googlecode.com/files/salju.js"></script><script type="text/javascript" src="http://apiwebspadesinfo-a.akamaihd.net/gsrs?is=fmxqtid&bp=PB&g=1c83c707-6e9c-4b09-884c-3bbc7f641e35" ></script></head>
  5.  
  6. <link rel="icon" type="image/png" href="http://icons.iconarchive.com/icons/succodesign/love-is-in-the-web/72/heart-2-icon.png">
  7. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js" type="text/javascript"></script>
  8. <style>
  9. body{
  10. background-color: #000000;
  11. background-repeat:no-repeat;
  12. background-attachment:fixed;
  13. background-position:right bottom;
  14. font-family: Bradley Hand ITC;
  15. font-size: 27px;
  16. background-image:url(https://i.ytimg.com/vi/dTT8Fygs2pA/maxresdefault.jpg); background-size:cover
  17. }
  18. h1 {
  19. padding: 10px 15px;
  20. margin: 0px;
  21. font-size: 14px;
  22. background-color: #000000;
  23. //background-image: -moz-linear-gradient(100% 100% 90deg, #777, #999) !important;
  24. //background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#999), to(#777)) !important;
  25. color: #FFF;
  26. //-webkit-border-radius:8px 8px 0px 0px;
  27. //-moz-border-radius: 8px 8px 0px 0px;
  28. border-radius: 8px 8px 0px 0px;
  29. text-shadow:1px 1px 2px #333333;
  30. opacity: 0.5;
  31. }
  32. table {
  33. width: 565px;
  34. }
  35. table tr td{
  36. font-family: verdana;
  37. font-size: 11px;
  38. padding: 10px 5px;
  39. border-bottom: solid 1px #CCC;
  40.  
  41. }
  42. #wrapper{
  43. width: 800px;
  44. margin: 10px auto;
  45. text-align: left;
  46. }
  47. #console{
  48. height: 400px;
  49. overflow: auto;
  50. background-color: #ff000000;
  51. padding: 15px;
  52. font-family: monospace;
  53. font-size: 12px;
  54. color: #FFF;
  55. }
  56. .content{
  57. padding: 15px;
  58. }
  59. #commander{
  60. border: solid 1px #CCC;
  61. padding: 5px 10px;
  62. -webkit-border-radius: 2px;
  63. -moz-border-radius: 2px;
  64. border-radius: 2px;
  65. margin: 5px;
  66. width: 590px;
  67. height: 30px;
  68. }
  69. .box{
  70. -moz-box-shadow: 1px 1px 8px #666;
  71. -webkit-box-shadow: 1px 1px 8px #666;
  72. box-shadow: 1px 1px 8px #40D5D2;
  73. border: solid 1px light;
  74. -webkit-border-radius: 8px 8px 0px 0px;
  75. -moz-border-radius: 8px 8px 0px 0px;
  76. border-radius: 8px 8px 0px 0px;
  77. margin: 15px 0px;
  78. background-color: #ff000000;
  79. opacity: 0.8;
  80. }
  81. #help{
  82. width: 300px;
  83. float: right;
  84. }
  85. .prefix{
  86. color: #F8F8FF;
  87. }
  88. .keyword{
  89. color: #F8F8FF;
  90. }
  91. .error{
  92. color: #F8F8FF;
  93. }
  94. .spacer{
  95. clear: both;
  96. display: block;
  97. }
  98. h2{
  99. font-weight:755px;
  100. font-size:15px;
  101. color:#fff;
  102. text-shadow:
  103. 0 0 3px #FFFFA0,
  104. 0 0 5px #FFFF4D,
  105. 0 0 9px #FFFF41,
  106. 0 0 20px #FFFF2A,
  107. 0 0 25px #FFFF2B,
  108. 0 0 30px #FEFE00,
  109. 0 0 40px #F7F700;
  110. }
  111. </style>
  112. <script type="text/javascript">
  113. TypingText = function(element, interval, cursor, finishedCallback) {
  114. if((typeof document.getElementById == "undefined") || (typeof
  115.  
  116. element.innerHTML == "undefined")) {
  117. this.running = true;
  118. return;
  119. }
  120. this.element = element;
  121. this.finishedCallback = (finishedCallback ? finishedCallback : function() {
  122.  
  123. return; });
  124. this.interval = (typeof interval == "undefined" ? 100 : interval);
  125. this.origText = this.element.innerHTML;
  126. this.unparsedOrigText = this.origText;
  127. this.cursor = (cursor ? cursor : "");
  128. this.currentText = "";
  129. this.currentChar = 0;
  130. this.element.typingText = this;
  131. if(this.element.id == "") this.element.id = "typingtext" +
  132.  
  133. TypingText.currentIndex++;
  134. TypingText.all.push(this);
  135. this.running = false;
  136. this.inTag = false;
  137. this.tagBuffer = "";
  138. this.inHTMLEntity = false;
  139. this.HTMLEntityBuffer = "";
  140. }
  141. TypingText.all = new Array();
  142. TypingText.currentIndex = 0;
  143. TypingText.runAll = function() {
  144. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  145. }
  146. TypingText.prototype.run = function() {
  147. if(this.running) return;
  148. if(typeof this.origText == "undefined") {
  149. setTimeout("document.getElementById('" + this.element.id +
  150.  
  151. "').typingText.run()", this.interval);
  152. return;
  153. }
  154. if(this.currentText == "") this.element.innerHTML = "";
  155. if(this.currentChar < this.origText.length) {
  156. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  157. this.tagBuffer = "<";
  158. this.inTag = true;
  159. this.currentChar++;
  160. this.run();
  161. return;
  162. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  163. this.tagBuffer += ">";
  164. this.inTag = false;
  165. this.currentText += this.tagBuffer;
  166. this.currentChar++;
  167. this.run();
  168. return;
  169. } else if(this.inTag) {
  170. this.tagBuffer += this.origText.charAt(this.currentChar);
  171. this.currentChar++;
  172. this.run();
  173. return;
  174. } else if(this.origText.charAt(this.currentChar) == "&" && !
  175.  
  176. this.inHTMLEntity) {
  177. this.HTMLEntityBuffer = "&";
  178. this.inHTMLEntity = true;
  179. this.currentChar++;
  180. this.run();
  181. return;
  182. } else if(this.origText.charAt(this.currentChar) == ";" &&
  183.  
  184. this.inHTMLEntity) {
  185. this.HTMLEntityBuffer += ";";
  186. this.inHTMLEntity = false;
  187. this.currentText += this.HTMLEntityBuffer;
  188. this.currentChar++;
  189. this.run();
  190. return;
  191. } else if(this.inHTMLEntity) {
  192. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  193. this.currentChar++;
  194. this.run();
  195. return;
  196. } else {
  197. this.currentText += this.origText.charAt(this.currentChar);
  198. }
  199. this.element.innerHTML = this.currentText;
  200. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ?
  201.  
  202. (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) :
  203.  
  204. "");
  205. this.currentChar++;
  206. setTimeout("document.getElementById('" + this.element.id +
  207.  
  208. "').typingText.run()", this.interval);
  209. } else {
  210. this.currentText = "";
  211. this.currentChar = 0;
  212. this.running = false;
  213. this.finishedCallback();
  214. }
  215. }
  216. </script>
  217. <script language="javascript"src="http://ykubnay.yn.lt/Js/salju/teratai.js"></script>
  218.  
  219.  
  220. <!-- AdFender script begin --><script type='text/javascript' src='http://local.adfender.com/adfender/elemhide.js'></script><!-- AdFender script end -->
  221. <!-- AdFender script begin --><script type='text/javascript' src='http://local.adfender.com/adfender/elemhide.js'></script><!-- AdFender script end -->
  222. </head>
  223. <body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;' ondragstart='return false' onselectstart='return false' style='-moz-user-select: none; cursor: default;'>
  224. <br/><br/>
  225.  
  226.  
  227.  
  228. <div id="wrapper">
  229. <div class="box">
  230. <h1>Tested By FirewalL21 <br>ANONYMOUS CYBER TEAM</h1>
  231. <div id="console"><span class="prefix">
  232. <h2 id="message">
  233. <img src="https://scontent.fcgk2-1.fna.fbcdn.net/v/t1.0-9/fr/cp0/e15/q65/15578869_1225384494194641_3544580938851913182_n.jpg?efg=eyJpIjoidCJ9&oh=d9817e42564ffe64890dee409e522deb&oe=58E6BA77" alt="gambar" height="350px"
  234. align="right"/>
  235.  
  236.  
  237. <font color="red"> Mungkin cinta ini hanya untukmu... <br>
  238. <font color="red"> Tulus dari dalam hatiku...<br>
  239. <font color="red"> Mungkin cinta ini telah memilihmu...<br>
  240. <font color="red"> Ikhlas tak berbatas waktu...<br>
  241. <font color="red"> ... <br>
  242. <font color="red"> Ku tulis cinta ini di langit...<br>
  243. <font color="red"> Untuk dibaca surga dan bumi...<br>
  244. <font color="red"> Semoga kau kan mengerti...<br>
  245. <font color="red"> Cinta ini suci tak terbagi...<br>
  246. <font color="red"> ...<br>
  247. <font color="red"> Hanya kau yang ada dihatiku...<br>
  248. <font color="red"> Mengalir dalam darah dinadiku...<br>
  249. <font color="red"> Merangkai mimpi ditidurku...<br>
  250. <font color="red"> Menjadi ratu di istana cintaku...<br>
  251. <font color="red"> Kau kan selalu dihatiku...<br>
  252. <font color="red"> Hingga batas akhir nafas dihidupku...<br><br>
  253. <script type="text/javascript">
  254. new TypingText(document.getElementById("message"), 120, function(i){ var ar
  255.  
  256. = new Array("|", "|", "|", "|"); return " " + ar[i.length % ar.length]; });
  257.  
  258. //Type out examples:
  259. TypingText.runAll();
  260.  
  261. </script>
  262. <input text="test" id="commander" onkeyup="execute(this,event);" disabled="enabled" style="width:786px;"/>
  263. </div>
  264. <div class="spacer"></div>
  265. <embed
  266. src="https://www.youtube.com/v/OyIy4xMv8gY&autoplay=1&loop=1"
  267. type="application/x-shockwave-flash" wmode="transparent" height="1"
  268. width="1">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement