Advertisement
LiaoJackie

Index by Jacker

Nov 22nd, 2015
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.65 KB | None | 0 0
  1.  
  2.  
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  7. <title>Hacker Liao</title>
  8. </head>
  9. <body>
  10.  
  11.  
  12.  
  13.  
  14. <title>Website by LiaoJackie/PeterJackie </title>
  15. <style id="jsbin-css">
  16.  
  17. </style>
  18. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  19. <link href="http://fonts.googleapis.com/css?family=Orbitron:700" rel="stylesheet" type="text/css">
  20. <style type="text/css">BODY { background-image:url('https://dl.dropboxusercontent.com/s/02ht5xoec1ie7jw/bg.gif'); </style>
  21.  
  22. <!-- no txt inicio -->
  23. <script language="Javascript">
  24. <!-- Begin
  25. function disableselect(e){
  26. return false
  27. }
  28. function reEnable(){
  29. return true
  30. }
  31. document.onselectstart=new Function ("return false")
  32. if (window.sidebar){
  33. document.onmousedown=disableselect
  34. document.onclick=reEnable
  35. }
  36. // End -->
  37. </script>
  38. <!-- no txt fin -->
  39.  
  40. <style type="text/css">BODY {
  41. SCROLLBAR-FACE-COLOR: #000000; SCROLLBAR-HIGHLIGHT-COLOR: #000000; SCROLLBAR-SHADOW-COLOR: #000000; SCROLLBAR-3DLIGHT-COLOR: #000000; SCROLLBAR-ARROW-COLOR: #ffffff; SCROLLBAR-TRACK-COLOR: #ffffff; FONT-FAMILY: Verdana; SCROLLBAR-DARKSHADOW-COLOR: #000000
  42. }
  43. .Estilo10 {
  44. COLOR: #ffffff; FONT-FAMILY: Haettenschweiler
  45. }
  46. .Estilo8 {
  47. FONT-SIZE: 10px; COLOR: #ffffff; FONT-FAMILY: Haettenschweiler
  48. }
  49.  
  50. </style>
  51.  
  52.  
  53.  
  54.  
  55. <center>
  56.  
  57.  
  58.  
  59.  
  60.  
  61. <script language="JavaScript">
  62.  
  63.  
  64. TypingText = function(element, interval, cursor, finishedCallback) {
  65. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  66. this.running = true; // Never run.
  67. return;
  68. }
  69. this.element = element;
  70. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  71. this.interval = (typeof interval == "undefined" ? 20 : interval);
  72. this.origText = this.element.innerHTML;
  73. this.unparsedOrigText = this.origText;
  74. this.cursor = (cursor ? cursor : "");
  75. this.currentText = "";
  76. this.currentChar = 0;
  77. this.element.typingText = this;
  78. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  79. TypingText.all.push(this);
  80. this.running = false;
  81. this.inTag = false;
  82. this.tagBuffer = "";
  83. this.inHTMLEntity = false;
  84. this.HTMLEntityBuffer = "";
  85. }
  86. TypingText.all = new Array();
  87. TypingText.currentIndex = 0;
  88. TypingText.runAll = function() {
  89. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  90. }
  91. TypingText.prototype.run = function() {
  92. if(this.running) return;
  93. if(typeof this.origText == "undefined") {
  94. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval); // We haven't finished loading yet. Have patience.
  95. return;
  96. }
  97. if(this.currentText == "") this.element.innerHTML = "";
  98. // this.origText = this.origText.replace(/<([^<])*>/, ""); // Strip HTML from text.
  99. if(this.currentChar < this.origText.length) {
  100. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  101. this.tagBuffer = "<";
  102. this.inTag = true;
  103. this.currentChar++;
  104. this.run();
  105. return;
  106. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  107. this.tagBuffer += ">";
  108. this.inTag = false;
  109. this.currentText += this.tagBuffer;
  110. this.currentChar++;
  111. this.run();
  112. return;
  113. } else if(this.inTag) {
  114. this.tagBuffer += this.origText.charAt(this.currentChar);
  115. this.currentChar++;
  116. this.run();
  117. return;
  118. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  119. this.HTMLEntityBuffer = "&";
  120. this.inHTMLEntity = true;
  121. this.currentChar++;
  122. this.run();
  123. return;
  124. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  125. this.HTMLEntityBuffer += ";";
  126. this.inHTMLEntity = false;
  127. this.currentText += this.HTMLEntityBuffer;
  128. this.currentChar++;
  129. this.run();
  130. return;
  131. } else if(this.inHTMLEntity) {
  132. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  133. this.currentChar++;
  134. this.run();
  135. return;
  136. } else {
  137. this.currentText += this.origText.charAt(this.currentChar);
  138. }
  139. this.element.innerHTML = this.currentText;
  140. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  141. this.currentChar++;
  142. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  143. } else {
  144. this.currentText = "";
  145. this.currentChar = 0;
  146. this.running = false;
  147. this.finishedCallback();
  148. }
  149. }
  150. </script>
  151. <center><img border="0" align=center src="http://4.bp.blogspot.com/-BR7nQ0J7BcM/UiS1vg8RVSI/AAAAAAAAACo/0HyhqILKhW0/s1600/AnonymousLogo.png" width="200" height="200"></center>
  152. <span class=a10><u8:p>&nbsp;</u8:p></span></p>
  153. <center>
  154. <font face="Courier New" size="5.5"><h3>
  155. <script>
  156.  
  157. farbbibliothek = new Array();
  158.  
  159. farbbibliothek[0] = new Array("#FF0000","#FF1100","#FF2200","#FF3300","#FF4400","#FF5500","#FF6600","#FF7700","#FF8800","#FF9900","#FFaa00","#FFbb00","#FFcc00","#FFdd00","#FFee00","#FFff00","#FFee00","#FFdd00","#FFcc00","#FFbb00","#FFaa00","#FF9900","#FF8800","#FF7700","#FF6600","#FF5500","#FF4400","#FF3300","#FF2200","#FF1100");
  160.  
  161. farbbibliothek[1] = new Array("#00FF00","black","#00FF00","#00FF00");
  162.  
  163. farbbibliothek[2] = new Array("#00FF00","#FF0000","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00");
  164.  
  165. farbbibliothek[3] = new Array("#FF0000","#FF4000","#FF8000","#FFC000","#FFFF00","#C0FF00","#80FF00","#40FF00","#00FF00","#00FF40","#00FF80","#00FFC0","#00FFFF","#00C0FF","#0080FF","#0040FF","#0000FF","#4000FF","#8000FF","#C000FF","#FF00FF","#FF00C0","#FF0080","#FF0040");
  166.  
  167. farbbibliothek[4] = new Array("#FF0000","#EE0000","#DD0000","#CC0000","#BB0000","#AA0000","#990000","#880000","#770000","#660000","#550000","#440000","#330000","#220000","#110000","black","#110000","#220000","#330000","#440000","#550000","#660000","#770000","#880000","#990000","#AA0000","#BB0000","#CC0000","#DD0000","#EE0000");
  168.  
  169. farbbibliothek[5] = new Array("black","black","black","white","white","white");
  170.  
  171. farbbibliothek[6] = new Array("#0000FF","#FFFF00");
  172.  
  173. farben = farbbibliothek[4];
  174.  
  175. function farbschrift()
  176.  
  177. {
  178.  
  179. for(var i=0 ; i<Buchstabe.length; i++)
  180.  
  181. {
  182.  
  183. document.all["a"+i].style.color=farben[i];
  184.  
  185. }
  186.  
  187. farbverlauf();
  188.  
  189. }
  190.  
  191. function string2array(text)
  192.  
  193. {
  194.  
  195. Buchstabe = new Array();
  196.  
  197. while(farben.length<text.length)
  198.  
  199. {
  200.  
  201. farben = farben.concat(farben);
  202.  
  203. }
  204.  
  205. k=0;
  206.  
  207. while(k<=text.length)
  208.  
  209. {
  210.  
  211. Buchstabe[k] = text.charAt(k);
  212.  
  213. k++;
  214.  
  215. }
  216.  
  217. }
  218.  
  219. function divserzeugen()
  220.  
  221. {
  222.  
  223. for(var i=0 ; i<Buchstabe.length; i++)
  224.  
  225. {
  226.  
  227. document.write("<span id='a"+i+"' class='a"+i+"'>"+Buchstabe[i] + "</span>");
  228.  
  229. }
  230.  
  231. farbschrift();
  232.  
  233. }
  234.  
  235. var a=1;
  236.  
  237. function farbverlauf()
  238.  
  239. {
  240.  
  241. for(var i=0 ; i<farben.length; i++)
  242.  
  243. {
  244.  
  245. farben[i-1]=farben[i];
  246.  
  247. }
  248.  
  249. farben[farben.length-1]=farben[-1];
  250.  
  251.  
  252.  
  253. setTimeout("farbschrift()",30);
  254.  
  255. }
  256.  
  257. // Zu Demonstrationszwecken**
  258.  
  259. var farbsatz=1;
  260.  
  261. function farbtauscher()
  262.  
  263. {
  264.  
  265. farben = farbbibliothek[farbsatz];
  266.  
  267. while(farben.length<text.length)
  268.  
  269. {
  270.  
  271. farben = farben.concat(farben);
  272.  
  273. }
  274.  
  275. farbsatz=Math.floor(Math.random()*(farbbibliothek.length-0.0001));
  276.  
  277. }
  278.  
  279. setInterval("farbtauscher()",5000);
  280.  
  281. text= "--[ Welcome To Site LiaoJackie/PeterJackie]--"; //h
  282.  
  283. string2array(text);
  284.  
  285. divserzeugen();
  286.  
  287. //document.write(text);</script>
  288. <br>
  289. <style>
  290. td{align: center; font-family: Bradley Hand ITC; font-size: 18pt; color: black}
  291. a{align: center; font-family: Bradley Hand ITC; font-size: 12pt; color: red}
  292.  
  293. </style>
  294. <center>
  295. <img src="http://skoun.net/wp-content/uploads/2014/11/anonymous-tim.jpg" width="0" height="0">
  296. <div id="example1">
  297. <p id="example2">
  298.  
  299.  
  300. <h3 align="center"><font size="4"face="Orbitron" style="background: url(&quot;http://i106.photobucket.com/albums/m280/YukioKenshin/chopnhay.gif&quot;) repeat scroll 0% 0% transparent; color:white;text-shadow: 0 0 0.3em aqua,0 0 0.3em aqua"><b> -=[ Expect Us ]=- </b></font></h3>
  301. </font></p><hr size="2" width="50%" color="#424242" align="center"><font size="2" face="Orbitron" color="#585858">
  302. <div align=center >
  303. <fieldset style="border: 2px dashed rgb(69, 69, 69); padding: 4px;width:500px;bgcolor:white;align:center;font-family:tahoma;font-size:10pt;border-color:#fff; text-shadow: rgb(0, 46, 255) 0px 0px 6px, rgb(3, 44, 254) 0px 0px 5px, rgb(9, 44, 255) 0px 0px 5px;">
  304.  
  305. <div>
  306. <blink><font face="Nosifer" size="7" color="white" class="a">Design</font><font face="Nosifer" size="7" color="red" class="a"> By</font><font face="Nosifer" size="7" color="white" class="a"> LiaoJackie/PeterJackie</font></blink>
  307.  
  308. <br><font size="4" face="Orbitron" style="background: url(&quot;http://i106.photobucket.com/albums/m280/YukioKenshin/chopnhay.gif&quot;) repeat scroll 0% 0% transparent; color:#fff; text-shadow: rgb(0, 46, 255) 0px 0px 6px, rgb(3, 44, 254) 0px 0px 5px, rgb(9, 44, 255) 0px 0px 5px;">- Hello Website Master -<br> Thanks For Visiting. <br>My Name : LiaoJackie/PeterJackie<br>Date of Birth : 26 ~ 2 ~ 2015 <br>Gender : Boy<br>Tel : 0903275712(Taiwan)<br>My Girlfriend : ...<br>Facebook : fb.com/liao.khungbo<br>Facebook 2 : fb.com/liao.jackie113</font>
  309. <br>
  310. <br>
  311. <br></font></font></div></center><script>
  312.  
  313. </script><font size="4" face="Orbitron" color="#585858">
  314. <script>jsbinShowEdit({"root":"http://static.jsbin.com","csrf":"RccJe4f1JegSj7TRvxsAQB+L"});</script>
  315. <script src="http://vnog.esy.es/js/vendor/eventsource.js"></script>
  316. <script src="http://vnog.esy.es/js/spike.js"></script>
  317. <script>
  318. var _gaq = _gaq || [];
  319. _gaq.push(['_setAccount', 'UA-1656750-34']);
  320. _gaq.push(['_trackPageview']);
  321.  
  322. (function() {
  323. var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  324. ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  325. (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga);
  326. })();
  327. </script>
  328.  
  329. <script type="text/javascript">
  330. //Define first typing example:
  331. new TypingText(document.getElementById("example1"));
  332. //Define second typing example (use "slashing" cursor at the end):
  333. new TypingText(document.getElementById("example2"), 50, function(i){
  334. var ar = new Array("_"," ","_","_"); return " " + ar[i.length %
  335. ar.length]; });
  336. //Type out examples:
  337. TypingText.runAll();
  338. </script>
  339. <!--
  340.  
  341. // PLAYER VARIABLES
  342.  
  343. var mp3snd = "<object width="300" height="286"> <param name="movie" value="http://www.nhaccuatui.com/m/Bl6rTX1UmDbx" /> <param name="quality" value="high" /> <param name="wmode" value="transparent" /> <param name="allowscriptaccess" value="always" /> <param name="allowfullscreen" value="true"/> <param name="flashvars" value="autostart=true" /> <embed src="http://www.nhaccuatui.com/m/Bl6rTX1UmDbx" flashvars="target=blank&autostart=true" allowscriptaccess="always" allowfullscreen="true" quality="high" wmode="transparent" type="application/x-shockwave-flash" width="300" height="286"></embed></object>";
  344. var oggsnd = "home-sound.ogg";
  345.  
  346. document.write('<audio autoplay="autoplay">');
  347. document.write('<source src="'+mp3snd+'" type="audio/mpeg">');
  348. document.write('<source src="'+oggsnd+'" type="audio/ogg">');
  349. document.write('<bgsound src="'+mp3snd+'" loop="1">');
  350. document.write('</audio>');
  351.  
  352. //-->
  353.  
  354.  
  355.  
  356. <script language="JavaScript" type="text/javascript">
  357.  
  358.  
  359. <!--
  360. var rows=1; // must be an odd number
  361. var speed=10; // lower is faster
  362. var reveal=10; // between 0 and 2 only. The higher, the faster the word appears
  363. var effectalign="default" //enter "center" to center it.
  364. script language="JavaScript" type="text/javascript">
  365. <!--
  366.  
  367. // PLAYER VARIABLES
  368.  
  369. var mp3snd = "<object width="300" height="286"> <param name="movie" value="http://www.nhaccuatui.com/m/Bl6rTX1UmDbx" /> <param name="quality" value="high" /> <param name="wmode" value="transparent" /> <param name="allowscriptaccess" value="always" /> <param name="allowfullscreen" value="true"/> <param name="flashvars" value="autostart=true" /> <embed src="http://www.nhaccuatui.com/m/Bl6rTX1UmDbx" flashvars="target=blank&autostart=true" allowscriptaccess="always" allowfullscreen="true" quality="high" wmode="transparent" type="application/x-shockwave-flash" width="300" height="286"></embed></object>";
  370. var oggsnd = "home-sound.ogg";
  371.  
  372. document.write('<audio autoplay="autoplay">');
  373. document.write('<source src="'+mp3snd+'" type="audio/mpeg">');
  374. document.write('<source src="'+oggsnd+'" type="audio/ogg">');
  375. document.write('<bgsound src="'+mp3snd+'" loop="1">');
  376. document.write('</audio>');
  377.  
  378. //-->
  379. </script>
  380. <center><img src="http://lal24.netii.net/empty%20group/nhay.gif"></center>
  381. <font face="Orbitron" style="color:white;text-shadow: 0 0 0.3em yellow,0 0 0.3em Yellow; z-index:900000">
  382. <bAdmin Liao</b>
  383. <marquee width="50%" scrolldelay="20" scrollamount="2" direction="left" behavior="scroll">
  384. <font face="Orbitron" style="color:white;text-shadow: 0 0 1.9em Green,0 0 0.3em Green;">
  385. <b> Design I.......I
  386. : https://www.facebook.com/liao.jackie113</b>
  387. </font></marquee>
  388. <center><img src="http://lal24.netii.net/empty%20group/nhay.gif"></center>
  389. <br>
  390. <h2><font face="Orbitron" style="color:Black;text-shadow: 0 0 0.3em aqua,0 0 0.3em aqua;"><b><font size=2><strong><p align="right">Made By: Other</b>
  391. <br>
  392. <embed src="https://www.youtube.com/v/oHlcL9XXrcE&amp;autoplay=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="0" height="0"></embed>"));
  393. //-->
  394.  
  395.  
  396.  
  397.  
  398. </body>
  399. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement