Advertisement
Guest User

script mt VersiWebgrup

a guest
Apr 22nd, 2014
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. JANGAN LUPA NAMA GUA :D
  2. WKWKWKW
  3. #BERCANDA
  4.  
  5.  
  6.  
  7. <font size="6" color="red"><blink> MT lagi </blink></font>
  8. <html>
  9. <head>
  10. <script language="JavaScript">alert(" MT ");</script>
  11. <style type="text/css"> @media print { body { display:none } } </style>
  12. <style type='text/css'>body, a, a:link{cursor:url(http://4.bp.blogspot.com/-hAF7tPUnmEE/TwGR3lRH0EI/AAAAAAAAAs8/6pki22hc3NE/s1600/ass.png), default;} a:hover {cursor:url(http://3.bp.blogspot.com/-bRikgqeZx0Q/TwGR4MUEC7I/AAAAAAAAAtA/isJmS0r35Qw/s1600/pointer.png),wait;}</style>
  13. <script type='text/javascript'>
  14. //<![CDATA[
  15. msg = "- sedang MT";
  16. msg = "" + msg;pos = 0;
  17. function scrollMSG()
  18. {document.title = msg.substring(pos, msg.length) + msg.substring(0, pos); pos++;
  19. if (pos > msg.length) pos = 0
  20. window.setTimeout("scrollMSG()",150);}
  21. scrollMSG();
  22. //]]>
  23. </script>
  24.  
  25. <meta name="Author" content="Gerard Ferrandez at http://www.dhteumeuleu.com">
  26. <meta http-equiv="imagetoolbar" content="no">
  27. <style type="text/css">
  28.     html {
  29.         overflow: hidden;
  30.     }
  31.     body {
  32.         background:#000000 no-repeat;background-size:95%;background-attachment:fixed;
  33.         width: 100%;
  34.         height: 100%;
  35.         color: #000000;
  36.     }
  37.     #frm {
  38.         position: absolute;
  39.         height: 100%;
  40.         width: 100%;
  41.         left: 0%;
  42.         top: 0%;
  43.         font-size: 2em;
  44.         font-weight: bold;
  45.         font-family: Chiller;
  46.         background: #transparent;
  47.         overflow: hidden;
  48.         padding: 0.5em;
  49.     }
  50.     #frm span {
  51.         position: relative;
  52.         text-align: center;
  53.         z-index: 1;
  54.     }
  55.     #mtxform {
  56.         position: relative;
  57.         z-index: 10;
  58.     }
  59.     .hidden {
  60.         visibility: hidden;
  61.     }
  62. </style>
  63. <link rel=”shortcut icon” href=”http://www.hi5style.com/gr/heart.gif/>
  64. <script type="text/javascript">
  65. /*
  66.    =====
  67.          script: morphing text
  68.          author: Gerard Ferrandez - [Ge1doot]
  69.            date: 20 September, 2008
  70.            site: http://www.dhteumeuleu.com
  71.     inspiration: http://www.pwang.com/blog/archives/2006/04/post_100.html
  72.           quote: Scott Adams, 'The Dilbert Principle'
  73.                        ------------
  74.         license: CC-BY-NC - please do not remove this notice !
  75.    =====
  76. */
  77.  
  78. var mtx = function () {
  79.     /* ==== private variables & methods ==== */
  80.     var stop = false;
  81.     var frm, lineDelay, charDelay;
  82.     var colorText, colorMatch, colorGhost, elapsedTime;
  83.     var lineIndex = 0;
  84.     var lineChar  = [];
  85.     var animStack = [];
  86.     var colorStack = [];
  87.     /* ==== rgb color ==== */
  88.     function colorRGB (c) {
  89.         return 'rgb('
  90.             +Math.round(Math.min(255, Math.max(0, c[0])))+','
  91.             +Math.round(Math.min(255, Math.max(0, c[1])))+','
  92.             +Math.round(Math.min(255, Math.max(0, c[2])))+')';
  93.     }
  94.     /* ==== Easing functions ==== */
  95.     function Ease () {}
  96.     Ease.prototype = {
  97.         ease : function () {
  98.             this.m += this.s;
  99.             this.x0 += (this.d * this.m * .0025);
  100.             if (this.m == 20) this.s = -1;
  101.             return this.x0;
  102.         },
  103.         init : function (x0, x1) {
  104.             this.m = 0;
  105.             this.s = 1;
  106.             this.d = x1 - x0;
  107.             this.x0 = x0;
  108.         }
  109.     }
  110.  
  111.     /* ==== Load Lines ==== */
  112.     function loadLines () {
  113.         // read text from HTML form
  114.         text = document.forms.mtxform.text.value.split("\n");
  115.         // loop through all lines
  116.         for (var j = 0; j < text.length; j++) {
  117.             var t = text[j];
  118.             if (t) {
  119.                 var n = t.length;
  120.                 lineChar[j] = [];
  121.                 // first pass: create characters capture RELATIVE offset coordinates
  122.                 for (var i = 0; i < n; i++)
  123.                     lineChar[j][i] = new Character(t.charAt(i), j);
  124.                 // second pass: convert to absolute position
  125.                 for (var i = 0, o; o = lineChar[j][i]; i++) {
  126.                     if (o.c == "|") {
  127.                         // remove spaces
  128.                         lineChar[j].splice(i, 1);
  129.                         frm.removeChild(o.o);
  130.                         i--;
  131.                     } else {
  132.                         // convert to absolute position and render
  133.                         o.o.style.position = "absolute";
  134.                         o.o.style.color = colorRGB(colorText);
  135.                         o.moveHTML();
  136.                         // push first line in animation stack
  137.                         if (j == 0) pushAnim (o, charDelay * i);
  138.                     }
  139.                 }
  140.             }
  141.         }
  142.     }
  143.     /* ==== Character Constructor ==== */
  144.     function Character (c, line) {
  145.         if (c == " ") c = "|";
  146.         this.c = c;
  147.         // create HTML element and append the the container
  148.         this.o = document.createElement("span");
  149.         this.o.innerHTML = c;
  150.         this.o.style.zIndex = 2;
  151.         frm.appendChild(this.o);
  152.         // capture relative offset positions !
  153.         this.x0 = this.o.offsetLeft;
  154.         this.y0 = -this.o.offsetHeight * 1.5;
  155.         this.x1 = this.x0;
  156.         this.x2 = this.x0;
  157.         this.y1 = (line + 1) * this.o.offsetHeight;
  158.         this.y2 = frm.offsetHeight;
  159.         this.mx = new Ease();
  160.         this.my = new Ease();
  161.         this.c0 = [colorText[0], colorText[1], colorText[2]];
  162.     }
  163.     /* ==== Character functions ==== */
  164.     Character.prototype = {
  165.         // ---- character animation ----
  166.         anim : function (i) {
  167.             // temporization
  168.             if (this.delay > 0) {
  169.                 if (elapsedTime)
  170.                     this.delay -= new Date().getTime() - elapsedTime;
  171.             } else {
  172.                 // moving
  173.                 this.x0 = this.mx.ease();
  174.                 this.y0 = this.my.ease();
  175.                 this.moveHTML();
  176.                 if (!this.my.m && !this.mx.m) {
  177.                     // remove from stack
  178.                     animStack.splice(i, 1);
  179.                     // remove dead characters
  180.                     if (this.off) frm.removeChild(this.o);
  181.                 }
  182.             }
  183.         },
  184.         // ----- color fading ------
  185.         color : function (i) {
  186.             this.c0[0] += this.cr[0];
  187.             this.c0[1] += this.cr[1];
  188.             this.c0[2] += this.cr[2];
  189.             this.ci++;
  190.             this.o.style.color = colorRGB(this.c0);
  191.             if (this.ci >= this.cs)
  192.                 colorStack.splice(i, 1);
  193.         },
  194.         // ----- HTML positioning -----
  195.         moveHTML : function () {
  196.             this.o.style.left = Math.round(this.x0) + "px";
  197.             this.o.style.top  = Math.round(this.y0) + "px";
  198.         },
  199.         // ----- init color fading ------
  200.         colorFade : function (c1, steps) {
  201.             this.cs = steps;
  202.             this.cr = [(c1[0] - this.c0[0]) / steps, (c1[1] - this.c0[1]) / steps, (c1[2] - this.c0[2]) / steps];
  203.             if (this.cr[0] != 0 || this.cr[1] != 0 || this.cr[2] != 0){
  204.                 this.ci = 0;
  205.                 colorStack.push (this);
  206.             }
  207.         }
  208.     }
  209.     /* ==== push character in the animation stack ==== */
  210.     function pushAnim (o, delay) {
  211.         // init ease
  212.         o.mx.init(o.x0, o.x1);
  213.         o.my.init(o.y0, o.y1);
  214.         o.delay = delay;
  215.         // push stack
  216.         animStack.push(o);
  217.     }
  218.     /* ==== next line ==== */
  219.     function nextLine () {
  220.         if (lineIndex < lineChar.length - 1) {
  221.             // display shadow text
  222.             for (var i = 0, o; o = lineChar[lineIndex][i]; i++) {
  223.                 var s = o.o.cloneNode(true);
  224.                 s.style.zIndex = 1;
  225.                 s.style.color = colorRGB(colorGhost);
  226.                 frm.appendChild(s);
  227.             }
  228.             // matching next line characters
  229.             for (var i = 0, t; t = lineChar[lineIndex + 1][i]; i++) {
  230.                 for (var j = 0, o; o = lineChar[lineIndex][j]; j++) {
  231.                     if (o.c == t.c) {
  232.                         // colors
  233.                         t.colorFade(colorMatch, o.match ? 1 : 40);
  234.                         t.match = true;
  235.                         // swap characters
  236.                         t.x0 = o.x0;
  237.                         t.y0 = o.y0;
  238.                         t.moveHTML();
  239.                         // remove redundant character
  240.                         frm.removeChild(o.o);
  241.                         lineChar[lineIndex].splice(j, 1);
  242.                         break;
  243.                     }
  244.                 }
  245.             }
  246.             // take off redundant characters
  247.             for (var i = 0, o; o = lineChar[lineIndex][i]; i++) {
  248.                 // set target position (off frame)
  249.                 o.y1 = frm.offsetHeight;
  250.                 o.off = true;
  251.                 o.match = false;
  252.                 o.colorFade (colorText, 40);
  253.                 // push in animation stack
  254.                 pushAnim (o, (lineDelay * .8) + charDelay * i);
  255.             }
  256.         }
  257.         // push next line in animation stack
  258.         lineIndex++;
  259.         if (lineIndex < lineChar.length) {
  260.             for (var i = 0, o; o = lineChar[lineIndex][i]; i++)
  261.                 pushAnim (o, lineDelay + charDelay * i);
  262.         }
  263.     }
  264.  
  265.     /* ==== main animation loop ==== */
  266.     function main() {
  267.         //  characters
  268.         var n = animStack.length;
  269.         if (n) {
  270.             var i = n;
  271.             while (i--)
  272.                 animStack[i].anim(i);
  273.         } else nextLine ();
  274.         // colors
  275.         var i = colorStack.length;
  276.         while (i--)
  277.             colorStack[i].color(i);
  278.         // get elapsed time and loop
  279.         elapsedTime = new Date().getTime();
  280.         setTimeout(main, 16);
  281.     }
  282.  
  283.     /* //////////// ==== public methods ==== //////////// */
  284.     return {
  285.         /* ==== initialize script ==== */
  286.         init : function (cont, t1, t2, c1, c2, c3) {
  287.             // container
  288.             frm = document.getElementById(cont);
  289.             lineDelay = t1;
  290.             charDelay = t2;
  291.             colorText = c1;
  292.             colorMatch = c2;
  293.             colorGhost = c3;
  294.             loadLines();
  295.             main();
  296.         },
  297.         changeText : function () {
  298.             document.getElementById("show").className = "";
  299.             document.getElementById("inputext").className = "hidden";
  300.             lineChar  = [];
  301.             animStack = [];
  302.             colorStack = [];
  303.             frm.innerHTML = "";
  304.             lineIndex = 0;
  305.             elapsedTime = 0;
  306.             loadLines();
  307.             frm.focus();
  308.         },
  309.         show : function () {
  310.             document.getElementById("show").className = "hidden";
  311.             document.getElementById("inputext").className = "";
  312.             document.getElementById("text").focus();
  313.         }
  314.     }
  315. }();
  316.  
  317.  
  318. /* ==== init text ==== */
  319. onload = function () {
  320.  
  321. //  mtx.init( el, linesDelay, charsDelay, cText, cMatch, cGhost);
  322.     mtx.init("frm", 1500, 150, [255,255,255], [255,64,0], [44,44,44]);
  323. }
  324.  
  325. </script>
  326. </head>
  327. <body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;'>
  328.    
  329.  
  330. <div id="frm"></div>
  331. <form id="mtxform" name="mtxform">
  332. <span id="inputext" class="hidden">
  333. <textarea rows="5" cols="20" id="text" name="text">
  334. Hai....
  335. Maaf Webgrup sedang MT
  336. Info MT :
  337. - All User Kecuali Jawa,Kyro,Wisnu Kami Turunkan :)
  338. - Penambahan Fiture
  339. - Menambah Slot User
  340. - Penambahan Saldo Sebesar 50.000
  341. - Penambahan Ticket Sebesar 50
  342. - Meningkatkan Keamanan
  343. Terima Kasih Atas Kesabarannya :)
  344. Maaf Atas Ketidaknyamanannya :)
  345. Salam
  346. ALL ADMIN WEBGRUP
  347. =============================================================
  348. From : ALL ADMIN WEBGRUP
  349. To : For user webgrup ;) .
  350. =============================================================
  351.                        
  352. </textarea>
  353.  
  354.  
  355. <center><object data="http://flash-mp3-player.net/medias/player_mp3.swf" width="0" height="0" type="application/x-shockwave-flash"><param value="#ffffff" name="bgcolor" /><center></object><object data="http://flash-mp3-player.net/medias/player_mp3.swf" width="0" height="0" type="application/x-shockwave-flash"><param value="#ffffff" name="bgcolor" /><param value="mp3=http://tux101010.vv.si/Depapepe%20-%20Wedding%20bell.mp3
  356. &loop=1&autoplay=1&volume=125" name="FlashVars" /></object>
  357.  
  358.  
  359. //-->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement