Advertisement
Guest User

Untitled

a guest
Aug 25th, 2017
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.80 KB | None | 0 0
  1. <html xmlns="http://www.w3.org/1999/xhtml"><head>
  2.  
  3. <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
  4.  
  5. <title>HacKeD By @AnonKeygen</title>
  6.  
  7.  
  8.  
  9. <script type="text/javascript">/*<![CDATA[*/
  10.  
  11. TypingText = function(element, interval, cursor, finishedCallback) {
  12.  
  13. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  14.  
  15. this.running = true;
  16.  
  17. return;
  18.  
  19. }
  20.  
  21. this.element = element;
  22.  
  23. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  24.  
  25. this.interval = (typeof interval == "undefined" ? 100 : interval);
  26.  
  27. this.origText = this.element.innerHTML;
  28.  
  29. this.unparsedOrigText = this.origText;
  30.  
  31. this.cursor = (cursor ? cursor : "");
  32.  
  33. this.currentText = "";
  34.  
  35. this.currentChar = 0;
  36.  
  37. this.element.typingText = this;
  38.  
  39. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  40.  
  41. TypingText.all.push(this);
  42.  
  43. this.running = false;
  44.  
  45. this.inTag = false;
  46.  
  47. this.tagBuffer = "";
  48.  
  49. this.inHTMLEntity = false;
  50.  
  51. this.HTMLEntityBuffer = "";
  52.  
  53. }
  54.  
  55. TypingText.all = new Array();
  56.  
  57. TypingText.currentIndex = 0;
  58.  
  59. TypingText.runAll = function() {
  60.  
  61. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  62.  
  63. }
  64.  
  65. TypingText.prototype.run = function() {
  66.  
  67. if(this.running) return;
  68.  
  69. if(typeof this.origText == "undefined") {
  70.  
  71. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  72.  
  73. return;
  74.  
  75. }
  76.  
  77. if(this.currentText == "") this.element.innerHTML = "";
  78.  
  79. if(this.currentChar < this.origText.length) {
  80.  
  81. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  82.  
  83. this.tagBuffer = "<";
  84.  
  85. this.inTag = true;
  86.  
  87. this.currentChar++;
  88.  
  89. this.run();
  90.  
  91. return;
  92.  
  93. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  94.  
  95. this.tagBuffer += ">";
  96.  
  97. this.inTag = false;
  98.  
  99. this.currentText += this.tagBuffer;
  100.  
  101. this.currentChar++;
  102.  
  103. this.run();
  104.  
  105. return;
  106.  
  107. } else if(this.inTag) {
  108.  
  109. this.tagBuffer += this.origText.charAt(this.currentChar);
  110.  
  111. this.currentChar++;
  112.  
  113. this.run();
  114.  
  115. return;
  116.  
  117. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  118.  
  119. this.HTMLEntityBuffer = "&";
  120.  
  121. this.inHTMLEntity = true;
  122.  
  123. this.currentChar++;
  124.  
  125. this.run();
  126.  
  127. return;
  128.  
  129. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  130.  
  131. this.HTMLEntityBuffer += ";";
  132.  
  133. this.inHTMLEntity = false;
  134.  
  135. this.currentText += this.HTMLEntityBuffer;
  136.  
  137. this.currentChar++;
  138.  
  139. this.run();
  140.  
  141. return;
  142.  
  143. } else if(this.inHTMLEntity) {
  144.  
  145. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  146.  
  147. this.currentChar++;
  148.  
  149. this.run();
  150.  
  151. return;
  152.  
  153. } else {
  154.  
  155. this.currentText += this.origText.charAt(this.currentChar);
  156.  
  157. }
  158.  
  159. this.element.innerHTML = this.currentText;
  160.  
  161. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  162.  
  163. this.currentChar++;
  164.  
  165. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  166.  
  167. } else {
  168.  
  169. this.currentText = "";
  170.  
  171. this.currentChar = 0;
  172.  
  173. this.running = false;
  174.  
  175. this.finishedCallback();
  176.  
  177. }
  178.  
  179. }
  180.  
  181.  
  182.  
  183. /*]]>*/</script></head>
  184.  
  185.  
  186.  
  187. <style>
  188. .nav-pills-justified
  189. {
  190. text-align: center;
  191. background-color: #333;
  192. overflow: hidden;
  193. }
  194. .nav-pills-justified li
  195. {
  196. display: inline-block;
  197. }
  198. .nav-pills-justified li a
  199. {
  200. float: left;
  201. display: block;
  202. color: #f2f2f2;
  203. text-align: center;
  204. padding: 14px 16px;
  205. text-decoration: none;
  206. font-size: 17px;
  207. font-weight: bold;
  208. }
  209. .nav-pills-justified li a:hover
  210. {
  211. background: red;
  212. }
  213. .notes li a
  214. {
  215. float: left;
  216. display: block;
  217. color: #f2f2f2;
  218. text-align: center;
  219. padding: 14px 16px;
  220. text-decoration: none;
  221. font-size: 17px;
  222. font-weight: bold;
  223. }
  224.  
  225. </style>
  226.  
  227. <body>
  228.  
  229.  
  230. <div id="container">
  231.  
  232. <div id="content-container">
  233.  
  234. <div id="content">
  235.  
  236.  
  237. <center><img src="http://1.bp.blogspot.com/-txnCag9Z9jM/UuKj2FcKOSI/AAAAAAAAAuY/ExDFUIUMyk0/s1600/caveirapirataprataimagek.png"></center>
  238. <div class="navbar">
  239. <div class="navbar-inner">
  240. <div class="container">
  241.  
  242.  
  243.  
  244. <ul class="nav-pills-justified">
  245. <li><a href ="#">Home</a></li>
  246. <li><a href ="#">Membrii</a></li>
  247. <li><a href ="#">Zona Restrictionata</a></li>
  248.  
  249. </ul>
  250.  
  251. </div>
  252. </div>
  253. </div>
  254.  
  255.  
  256.  
  257. <br><br>
  258. <center>
  259. <br><br>
  260.  
  261. </center>
  262. <p id="message" class="notes">
  263.  
  264.  
  265. Blabla <br>
  266. <font color="#800000">@AnonKeygen</font>
  267.  
  268. <br>
  269.  
  270. Line 1<br>
  271. Line 2<br>
  272. Line 3<br></p>
  273.  
  274.  
  275.  
  276. <script type="text/javascript">/*<![CDATA[*/
  277.  
  278. new TypingText(document.getElementById("message"), 90, function(i){ var ar = new Array("_", " ", "_", " "); return " " + ar[i.length % ar.length]; });
  279.  
  280.  
  281.  
  282. //Type out examples:
  283.  
  284. TypingText.runAll();
  285.  
  286. /*]]>*/</script>
  287.  
  288. </div>
  289.  
  290. <div id="aside">
  291.  
  292.  
  293.  
  294. </div>
  295.  
  296.  
  297.  
  298. <div id="music">
  299.  
  300. &nbsp;</div>
  301.  
  302. </div>
  303.  
  304. <p>&nbsp;</p>
  305.  
  306. </div>
  307.  
  308.  
  309.  
  310. <div id=bar style="position: fixed; width: 100%; bottom: 0px; font-family: tahoma; height: 20px; color: darkred; font-size: 13px; left: 0px; border-top: 1px solid #222; padding: 5px; background-color: #222">
  311. <CENTEr><B>> @AnonKeyGen <</B></CENTER></div>
  312. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement