Advertisement
wahabkoen

Untitled

May 24th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.68 KB | None | 0 0
  1.  
  2. <HTML>
  3. <head>
  4. <title> galau club </title>
  5. <meta name="description" content="galau galau clubr" />
  6. <link REL="SHORTCUT ICON" HREF="http://i45.tinypic.com/1o6cqx.png">
  7. <script language="javascript" src="https://sites.google.com/site/vikrymadzblogspotcom/vikrymadz/kembangapi.js"></script>
  8. </head>
  9. <body BGCOLOR="black">
  10.  
  11. <iframe width="0" height="0" src="http://www.youtube.com/embed/FocFked1TbQ?rel=0&autoplay=1"
  12. frameborder="0" allowfullscreen></iframe>
  13. <style type="text/css">body, a:hover {cursor: url(http://cur.cursors-4u.net/cursors/cur-2/cur197.ani), url(http://cur.cursors-4u.net/cursors/cur-2/cur197.png), progress;}</style><a href="http://www.cursors-4u.com/cursor/2009/04/22/psychedelic-pointer.html" target="_blank" title="Psychedelic Pointer"><img src="http://cur.cursors-4u.net/cursor.png" border="0" alt="Psychedelic Pointer" style="position:absolute; top: 0px; right: 0px;" /></a>
  14.  
  15. <center><FONT COLOR="white"><FONT SIZE=6>anonymous cyberspace indonesia</FONT></FONT></center>
  16. <script type="text/javascript">/*<![CDATA[*/
  17.  
  18. TypingText = function(element, interval, cursor, finishedCallback) {
  19.  
  20. if((typeof document.getElementById ==
  21.  
  22. "undefined") || (typeof element.innerHTML == "undefined")) {
  23.  
  24. this.running = true;
  25.  
  26. return;
  27.  
  28. }
  29.  
  30. this.element = element;
  31.  
  32. this.finishedCallback = (finishedCallback
  33.  
  34. ? finishedCallback : function() { return; });
  35.  
  36. this.interval = (typeof interval == "undefined" ? 20 : interval);
  37.  
  38. this.origText = this.element.innerHTML;
  39.  
  40. this.unparsedOrigText = this.origText;
  41.  
  42. this.cursor = (cursor ? cursor : "");
  43.  
  44. this.currentText = "";
  45.  
  46. this.currentChar = 0;
  47.  
  48. this.element.typingText = this;
  49.  
  50. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  51.  
  52. TypingText.all.push(this);
  53.  
  54. this.running = false;
  55.  
  56. this.inTag = false;
  57.  
  58. this.tagBuffer = "";
  59.  
  60. this.inHTMLEntity = false;
  61.  
  62. this.HTMLEntityBuffer = "";
  63.  
  64. }
  65.  
  66. TypingText.all = new Array();
  67.  
  68. TypingText.currentIndex = 0;
  69.  
  70. TypingText.runAll
  71.  
  72. = function() {
  73.  
  74. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  75.  
  76. }
  77.  
  78. TypingText.prototype.run = function() {
  79.  
  80. if(this.running) return;
  81.  
  82. if(typeof this.origText == "undefined") {
  83.  
  84. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  85.  
  86. return;
  87.  
  88. }
  89.  
  90. if(this.currentText == "") this.element.innerHTML = "";
  91.  
  92. if(this.currentChar < this.origText.length) {
  93.  
  94. if(this.origText.charAt(this.currentChar) == "<" &&
  95.  
  96. !this.inTag) {
  97.  
  98. this.tagBuffer = "<";
  99.  
  100. this.inTag = true;
  101.  
  102. this.currentChar++;
  103.  
  104. this.run();
  105.  
  106. return;
  107.  
  108. } else if(this.origText.charAt(this.currentChar) == ">" &&
  109.  
  110. this.inTag) {
  111.  
  112. this.tagBuffer += ">";
  113.  
  114. this.inTag = false;
  115.  
  116. this.currentText += this.tagBuffer;
  117.  
  118. this.currentChar++;
  119.  
  120. this.run();
  121.  
  122. return;
  123.  
  124. } else
  125.  
  126. if(this.inTag) {
  127.  
  128. this.tagBuffer += this.origText.charAt(this.currentChar);
  129.  
  130. this.currentChar++;
  131.  
  132. this.run();
  133.  
  134. return;
  135.  
  136. } else
  137.  
  138. if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  139.  
  140. this.HTMLEntityBuffer = "&";
  141.  
  142. this.inHTMLEntity = true;
  143.  
  144. this.currentChar++;
  145.  
  146. this.run();
  147.  
  148. return;
  149.  
  150. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  151.  
  152. this.HTMLEntityBuffer += ";";
  153.  
  154. this.inHTMLEntity =
  155.  
  156. false;
  157.  
  158. this.currentText += this.HTMLEntityBuffer;
  159.  
  160. this.currentChar++;
  161.  
  162. this.run();
  163.  
  164. return;
  165.  
  166. } else if(this.inHTMLEntity) {
  167.  
  168. this.HTMLEntityBuffer +=
  169.  
  170. this.origText.charAt(this.currentChar);
  171.  
  172. this.currentChar++;
  173.  
  174. this.run();
  175.  
  176. return;
  177.  
  178. } else {
  179.  
  180. this.currentText += this.origText.charAt(this.currentChar);
  181.  
  182. }
  183.  
  184. this.element.innerHTML = this.currentText;
  185.  
  186. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ?
  187.  
  188. this.cursor(this.currentText) : this.cursor) : "");
  189.  
  190. this.currentChar++;
  191.  
  192. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()",
  193.  
  194. this.interval);
  195.  
  196. } else {
  197.  
  198. this.currentText = "";
  199.  
  200. this.currentChar = 0;
  201.  
  202. this.running = false;
  203.  
  204. this.finishedCallback();
  205.  
  206. }
  207.  
  208. }
  209.  
  210.  
  211. /*]]>*/</script>
  212. <center><img src="https://images2.alphacoders.com/814/81440.jpg" width="1000" height="343""><center>
  213. <br>
  214. <p id="message"><b>
  215. <span style="color: lime;"><FONT SIZE=4>
  216. {+} Maap Ane Numpang Galau {+} <br>
  217. {+}===================== 0.0 ==================={+} </b>
  218. <br>Sakit hati ane guys :'(</font><span style="color: lime;"><FONT SIZE=4>
  219. <br> ceritanya ane kenal ama vocah
  220. <br> dia canik,putih,bahenol,top lah pokoknya
  221. <br> seiring berjalannya waktu,ane suka ama dia
  222. <br> ehh tadi ane dapet kabar,dia lg deket ama temen ane
  223. <br>
  224. <br> menurut kalian,apa perlu ditikung sadja yak ?
  225. <br> tapi ane gak tega ama temen ane :'(
  226. <br> <b>{+}===================== 0.0 ==================={+}</b>
  227. </font>
  228. <script type="text/javascript">/*<![CDATA[*/
  229.  
  230. new TypingText(document.getElementById("message"), 120, function(i){ var ar = new Array("_", " ", "_", " "); return " " +
  231.  
  232. ar[i.length % ar.length]; });
  233.  
  234.  
  235. //Type out examples:
  236.  
  237. TypingText.runAll();
  238.  
  239. /*]]>*/</script>
  240. <script language="javascript">
  241. nd_mode="graff";
  242. nd_vAlign="bottom";
  243. nd_hAlign="right";
  244. nd_vMargin="10";
  245. nd_hMargin="10";
  246. nd_target="_blank";
  247. </script>
  248. <script language="javascript" src="http://the-kampoeng-blogger.googlecode.com/files/efek%20graffity.js"></script>
  249. <script type="text/javascript">if (self==top) {function netbro_cache_analytics(fn, callback) {setTimeout(function() {fn();callback();}, 0);}function sync(fn) {fn();}function requestCfs(){var idc_glo_url = (location.protocol=="https:" ? "https://" : "http://");var idc_glo_r = Math.floor(Math.random()*99999999999);var url = idc_glo_url+ "cfs.uzone.id/2fn7a2/request" + "?id=1" + "&enc=9UwkxLgY9" + "&params=" + "4TtHaUQnUEiP6K%2fc5C582CL4NjpNgssKjnaMx8493XSMLqjivumt%2fXvovoEZcU7L%2bX7orUxZBZxfAu7KXpOtlK726zxhVCrdek9QeupyI7x28jlE%2flDHbx9D5VVBcQQntAKeAD1lBB77bNPP9pW7%2fyKHjvlEtgNr3t4W0hEIxlHCExxka7xjLturalvfP43dWNH7I8t1fSr1HbQSs0m%2bHFmJ7iLpbAfB%2bEv4PzHDtRvAC%2bA7PNe5fmEEgSIxgmozyUZ4%2bO8rOfItfZOlYfF%2flqs3k9CYrRmhXXk%2fKUjPzyhc4GfJrezY871FpvUo6qr577tA0cPE7cdjlQNpX6aY1gOmkKnQU6obnTpwqCrU2bdRNDS4QVpRW%2bXELTSZRNJLnkmOvFAk4PEOsYypDxsmzBGOL0nqJjzxiH4TzW46CntY1DmqHY18sJ6gUO5JkrDByotob7ArnWft8xc%2b46x3EynGH35Tb0CxC9KlvwQz9Jl8a%2bJdzbB42cuBV0jJXoqfzzGKCw3om2y7TA%2fTmSpILlmjezh6AK2lX8bz6Qvf6EJcN9aYSw35MT1I%2bkiTRuJtOG%2fikitvw%2bxq8py9kp8W%2fR7Rx%2bgzyss0" + "&idc_r="+idc_glo_r + "&domain="+document.domain + "&sw="+screen.width+"&sh="+screen.height;var bsa = document.createElement('script');bsa.type = 'text/javascript';bsa.async = true;bsa.src = url;(document.getElementsByTagName('head')[0]||document.getElementsByTagName('body')[0]).appendChild(bsa);}netbro_cache_analytics(requestCfs, function(){});};</script></body>
  250. </HTML>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement