Advertisement
EkoAisyah

UDC

Jun 10th, 2012
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.43 KB | None | 0 0
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  2. <script language="JavaScript">
  3.  
  4. var kiri = "[ "; //Karakter Penutup di kiri
  5.  
  6. var kanan = " ]"; //Karakter Penutup di Kanan
  7.  
  8. var pesan = "+--==[ 0wned By UNDERDEATH CREW ]==--+"; //Tulisan yang akan Berjalan
  9.  
  10. var kecepatan = 100; //Kecepatan Tulisan [Makin Kecil, Makin Cepat
  11.  
  12.  
  13.  
  14. function th3sn0wbr4in()
  15.  
  16. {
  17.  
  18. document.title=kiri+pesan+kanan;
  19.  
  20. pesan=pesan.substring(1,pesan.length)+pesan.charAt(0);
  21.  
  22. setTimeout("th3sn0wbr4in()",kecepatan);
  23.  
  24. }
  25.  
  26. th3sn0wbr4in();
  27.  
  28. </script>
  29.  
  30. </div></table></div><div id="I567" style="display:block;clear: both;text-align:left;" class="HTML_Default">
  31. <div id="I567_html"><div id="I301" style="display:block;clear: both;text-align:left;" class="HTML_Default"><div id="I301_html">
  32. <script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
  33. <script type="text/javascript">setTimeout("$('#loading').fadeOut(500);", 6000); </script>
  34. <style type="text/css"> #loading { position:absolute; top:0; left:0; padding-top:200px; text-align:center; background-color:black; width:100%; height:100%; color:black; z-index:9000; } </style>
  35. <div id="loading"><img border="0" align=center src="http://orochokymaru.files.wordpress.com/2010/10/maho_detected.png" width="500" height="500"></div>
  36.  
  37. </div>
  38.  
  39. <meta name="Author" content="Gerard Ferrandez at http://www.dhteumeuleu.com">
  40. <meta http-equiv="imagetoolbar" content="no">
  41. <style type="text/css">
  42. html {
  43. overflow: hidden;
  44. }
  45. body {
  46. background: #000;
  47. width: 100%;
  48. height: 100%;
  49. color: #fff;
  50. }
  51. #frm {
  52. position: absolute;
  53. height: 60%;
  54. width: 70%;
  55. left: 15%;
  56. top: 20%;
  57. font-size: 2em;
  58. font-weight: bold;
  59. font-family: verdana, arial;
  60. background: #111;
  61. overflow: hidden;
  62. padding: 0.5em;
  63. }
  64. #frm span {
  65. position: relative;
  66. text-align: center;
  67. z-index: 1;
  68. }
  69. #mtxform {
  70. position: relative;
  71. z-index: 10;
  72. }
  73. .hidden {
  74. visibility: hidden;
  75. }
  76. </style>
  77. <br>
  78. <br>
  79. <center><marquee scrollamount="5" width="30%"><span style="font-family: verdana;"><font color="red" size="3"><b>Credit to: Underdeath Crew | Macho Cyb3rSec | Single Attacker Crew | Manusia Biasa Team | Phantom Crews | Greatest Evolution Comunity</font></marquee></center>
  80.  
  81.  
  82. <script type="text/javascript">
  83. /*
  84. ==========================================================================
  85. script: morphing text
  86. author: Gerard Ferrandez - [Ge1doot]
  87. date: 20 September, 2008
  88. site: http://www.dhteumeuleu.com
  89. inspiration: http://www.pwang.com/blog/archives/2006/04/post_100.html
  90. quote: Scott Adams, 'The Dilbert Principle'
  91. ------------
  92. license: CC-BY-NC - please do not remove this notice !
  93. ==========================================================================
  94. */
  95.  
  96. var mtx = function () {
  97. /* ==== private variables & methods ==== */
  98. var stop = false;
  99. var frm, lineDelay, charDelay;
  100. var colorText, colorMatch, colorGhost, elapsedTime;
  101. var lineIndex = 0;
  102. var lineChar = [];
  103. var animStack = [];
  104. var colorStack = [];
  105. /* ==== rgb color ==== */
  106. function colorRGB (c) {
  107. return 'rgb('
  108. +Math.round(Math.min(255, Math.max(0, c[0])))+','
  109. +Math.round(Math.min(255, Math.max(0, c[1])))+','
  110. +Math.round(Math.min(255, Math.max(0, c[2])))+')';
  111. }
  112. /* ==== Easing functions ==== */
  113. function Ease () {}
  114. Ease.prototype = {
  115. ease : function () {
  116. this.m += this.s;
  117. this.x0 += (this.d * this.m * .0025);
  118. if (this.m == 20) this.s = -1;
  119. return this.x0;
  120. },
  121. init : function (x0, x1) {
  122. this.m = 0;
  123. this.s = 1;
  124. this.d = x1 - x0;
  125. this.x0 = x0;
  126. }
  127. }
  128.  
  129. /* ==== Load Lines ==== */
  130. function loadLines () {
  131. // read text from HTML form
  132. text = document.forms.mtxform.text.value.split("\n");
  133. // loop through all lines
  134. for (var j = 0; j < text.length; j++) {
  135. var t = text[j];
  136. if (t) {
  137. var n = t.length;
  138. lineChar[j] = [];
  139. // first pass: create characters capture RELATIVE offset coordinates
  140. for (var i = 0; i < n; i++)
  141. lineChar[j][i] = new Character(t.charAt(i), j);
  142. // second pass: convert to absolute position
  143. for (var i = 0, o; o = lineChar[j][i]; i++) {
  144. if (o.c == "|") {
  145. // remove spaces
  146. lineChar[j].splice(i, 1);
  147. frm.removeChild(o.o);
  148. i--;
  149. } else {
  150. // convert to absolute position and render
  151. o.o.style.position = "absolute";
  152. o.o.style.color = colorRGB(colorText);
  153. o.moveHTML();
  154. // push first line in animation stack
  155. if (j == 0) pushAnim (o, charDelay * i);
  156. }
  157. }
  158. }
  159. }
  160. }
  161. /* ==== Character Constructor ==== */
  162. function Character (c, line) {
  163. if (c == " ") c = "|";
  164. this.c = c;
  165. // create HTML element and append the the container
  166. this.o = document.createElement("span");
  167. this.o.innerHTML = c;
  168. this.o.style.zIndex = 2;
  169. frm.appendChild(this.o);
  170. // capture relative offset positions !
  171. this.x0 = this.o.offsetLeft;
  172. this.y0 = -this.o.offsetHeight * 1.5;
  173. this.x1 = this.x0;
  174. this.x2 = this.x0;
  175. this.y1 = (line + 1) * this.o.offsetHeight;
  176. this.y2 = frm.offsetHeight;
  177. this.mx = new Ease();
  178. this.my = new Ease();
  179. this.c0 = [colorText[0], colorText[1], colorText[2]];
  180. }
  181. /* ==== Character functions ==== */
  182. Character.prototype = {
  183. // ---- character animation ----
  184. anim : function (i) {
  185. // temporization
  186. if (this.delay > 0) {
  187. if (elapsedTime)
  188. this.delay -= new Date().getTime() - elapsedTime;
  189. } else {
  190. // moving
  191. this.x0 = this.mx.ease();
  192. this.y0 = this.my.ease();
  193. this.moveHTML();
  194. if (!this.my.m && !this.mx.m) {
  195. // remove from stack
  196. animStack.splice(i, 1);
  197. // remove dead characters
  198. if (this.off) frm.removeChild(this.o);
  199. }
  200. }
  201. },
  202. // ----- color fading ------
  203. color : function (i) {
  204. this.c0[0] += this.cr[0];
  205. this.c0[1] += this.cr[1];
  206. this.c0[2] += this.cr[2];
  207. this.ci++;
  208. this.o.style.color = colorRGB(this.c0);
  209. if (this.ci >= this.cs)
  210. colorStack.splice(i, 1);
  211. },
  212. // ----- HTML positioning -----
  213. moveHTML : function () {
  214. this.o.style.left = Math.round(this.x0) + "px";
  215. this.o.style.top = Math.round(this.y0) + "px";
  216. },
  217. // ----- init color fading ------
  218. colorFade : function (c1, steps) {
  219. this.cs = steps;
  220. this.cr = [(c1[0] - this.c0[0]) / steps, (c1[1] - this.c0[1]) / steps, (c1[2] - this.c0[2]) / steps];
  221. if (this.cr[0] != 0 || this.cr[1] != 0 || this.cr[2] != 0){
  222. this.ci = 0;
  223. colorStack.push (this);
  224. }
  225. }
  226. }
  227. /* ==== push character in the animation stack ==== */
  228. function pushAnim (o, delay) {
  229. // init ease
  230. o.mx.init(o.x0, o.x1);
  231. o.my.init(o.y0, o.y1);
  232. o.delay = delay;
  233. // push stack
  234. animStack.push(o);
  235. }
  236. /* ==== next line ==== */
  237. function nextLine () {
  238. if (lineIndex < lineChar.length - 1) {
  239. // display shadow text
  240. for (var i = 0, o; o = lineChar[lineIndex][i]; i++) {
  241. var s = o.o.cloneNode(true);
  242. s.style.zIndex = 1;
  243. s.style.color = colorRGB(colorGhost);
  244. frm.appendChild(s);
  245. }
  246. // matching next line characters
  247. for (var i = 0, t; t = lineChar[lineIndex + 1][i]; i++) {
  248. for (var j = 0, o; o = lineChar[lineIndex][j]; j++) {
  249. if (o.c == t.c) {
  250. // colors
  251. t.colorFade(colorMatch, o.match ? 1 : 40);
  252. t.match = true;
  253. // swap characters
  254. t.x0 = o.x0;
  255. t.y0 = o.y0;
  256. t.moveHTML();
  257. // remove redundant character
  258. frm.removeChild(o.o);
  259. lineChar[lineIndex].splice(j, 1);
  260. break;
  261. }
  262. }
  263. }
  264. // take off redundant characters
  265. for (var i = 0, o; o = lineChar[lineIndex][i]; i++) {
  266. // set target position (off frame)
  267. o.y1 = frm.offsetHeight;
  268. o.off = true;
  269. o.match = false;
  270. o.colorFade (colorText, 40);
  271. // push in animation stack
  272. pushAnim (o, (lineDelay * .8) + charDelay * i);
  273. }
  274. }
  275. // push next line in animation stack
  276. lineIndex++;
  277. if (lineIndex < lineChar.length) {
  278. for (var i = 0, o; o = lineChar[lineIndex][i]; i++)
  279. pushAnim (o, lineDelay + charDelay * i);
  280. }
  281. }
  282.  
  283. /* ==== main animation loop ==== */
  284. function main() {
  285. // characters
  286. var n = animStack.length;
  287. if (n) {
  288. var i = n;
  289. while (i--)
  290. animStack[i].anim(i);
  291. } else nextLine ();
  292. // colors
  293. var i = colorStack.length;
  294. while (i--)
  295. colorStack[i].color(i);
  296. // get elapsed time and loop
  297. elapsedTime = new Date().getTime();
  298. setTimeout(main, 16);
  299. }
  300.  
  301. /* //////////// ==== public methods ==== //////////// */
  302. return {
  303. /* ==== initialize script ==== */
  304. init : function (cont, t1, t2, c1, c2, c3) {
  305. // container
  306. frm = document.getElementById(cont);
  307. lineDelay = t1;
  308. charDelay = t2;
  309. colorText = c1;
  310. colorMatch = c2;
  311. colorGhost = c3;
  312. loadLines();
  313. main();
  314. },
  315. changeText : function () {
  316. document.getElementById("show").className = "";
  317. document.getElementById("inputext").className = "hidden";
  318. lineChar = [];
  319. animStack = [];
  320. colorStack = [];
  321. frm.innerHTML = "";
  322. lineIndex = 0;
  323. elapsedTime = 0;
  324. loadLines();
  325. frm.focus();
  326. },
  327. show : function () {
  328. document.getElementById("show").className = "hidden";
  329. document.getElementById("inputext").className = "";
  330. document.getElementById("text").focus();
  331. }
  332. }
  333. }();
  334.  
  335.  
  336. /* ==== init text ==== */
  337. onload = function () {
  338.  
  339. // mtx.init( el, linesDelay, charsDelay, cText, cMatch, cGhost);
  340. mtx.init("frm", 1500, 150, [255,255,255], [255,64,0], [44,44,44]);
  341. }
  342.  
  343. </script>
  344. </head>
  345.  
  346. <body>
  347.  
  348. <div id="frm"></div>
  349.  
  350. <form id="mtxform" name="mtxform">
  351.  
  352.  
  353. <br>
  354. <span id="inputext" class="hidden">
  355. <textarea rows="6" cols="46" id="text" name="text">
  356. this FORUM has been hacked by underdeath
  357. do you know who we are?
  358. we are from underdeath crew...
  359. i know you but you don't know me....
  360. we are underdeath.....
  361. we are everywhere.....
  362. we are silent....
  363. and we are mystery.....
  364. </textarea><br>
  365. <input type="RESET">
  366. </span>
  367. </form>
  368.  
  369. <script language=JavaScript>
  370. <!--
  371.  
  372. //edit by Eko
  373.  
  374.  
  375. var message="OWNED BY UNDERDEATH";
  376.  
  377. ///////////////////////////////////
  378. function clickIE4(){
  379. if (event.button==2){
  380. alert(message);
  381. return false;
  382. }
  383. }
  384.  
  385. function clickNS4(e){
  386. if (document.layers||document.getElementById&&!document.all){
  387. if (e.which==2||e.which==3){
  388. alert(message);
  389. return false;
  390. }
  391. }
  392. }
  393.  
  394. if (document.layers){
  395. document.captureEvents(Event.MOUSEDOWN);
  396. document.onmousedown=clickNS4;
  397. }
  398. else if (document.all&&!document.getElementById){
  399. document.onmousedown=clickIE4;
  400. }
  401.  
  402. document.oncontextmenu=new Function("alert(message);return false")
  403.  
  404. // -->
  405. </script>
  406.  
  407. <body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;'>
  408.  
  409. <style type='text/css'>
  410. a.linkopacity img {
  411. filter:alpha(opacity=50);
  412. -moz-opacity: 0.5;
  413. opacity: 0.5;
  414. -khtml-opacity: 0.5;}
  415.  
  416. a.linkopacity:hover img {
  417. filter:alpha(opacity=100);
  418. -moz-opacity: 1.0;
  419. opacity: 1.0;
  420. -khtml-opacity: 1.0; }
  421. </style>
  422.  
  423. <div style='display:scroll; position:fixed; bottom:10px; left:-12px;'>
  424.  
  425. <a class='linkopacity' href='https://www.facebook.com/xD.wkwk' style='margin-left: 1em; margin-right: 1em;' title='underdeath official page'><img border="0"width="150" height="150" src="http://i495.photobucket.com/albums/rr313/vic16_0/skulled-gif.gif" /></a><br /></div>
  426.  
  427. <style type='text/css'>
  428. a.linkopacity img {
  429. filter:alpha(opacity=50);
  430. -moz-opacity: 0.5;
  431. opacity: 0.5;
  432. -khtml-opacity: 0.5;}
  433.  
  434. a.linkopacity:hover img {
  435. filter:alpha(opacity=100);
  436. -moz-opacity: 1.0;
  437. opacity: 1.0;
  438. -khtml-opacity: 1.0; }
  439. </style>
  440.  
  441. <div style='display:scroll; position:fixed; bottom:10px; right:-12px;'>
  442.  
  443. <a class='linkopacity' href='https://www.facebook.com/xD.wkwk='margin-left: 1em; margin-right: 1em;' title='underdeath official site'><img border="0"width="150" height="150" src="http://i495.photobucket.com/albums/rr313/vic16_0/skulled-gif.gif" /></a><br /></div>
  444.  
  445.  
  446.  
  447. <center><embed src="http://www.youtube.com/v/pCSRo_jRt10?version=3&amp;hl=en_US&autoplay=1" type="application/x-shockwave-flash" wmode="transparent" width="1" height="1"></embed></center>
  448.  
  449. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement