Advertisement
Guest User

testinh

a guest
Aug 12th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 4.02 KB | None | 0 0
  1.  
  2. }
  3. function start() {
  4. stop();
  5. prikaz();
  6. }
  7. start();
  8. </script>
  9.  
  10. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  11.  
  12. <meta name="keywords" content=" | [ Hacked By 'ANONXY ]
  13. <meta HTTP-EQUIV="Content-Type" content="text/html; charset=iso-8859-1" />
  14. <meta name="description" content=" | [ Hacked By # 'SkyHacker   ] |"><script type="text/javascript">
  15. //<![CDATA[
  16. try{if (!window.CloudFlare) { var CloudFlare=[{verbose:0,p:0,byc:0,owlid:0,mirage:0,oracle:0,paths:{cloudflare:"/cdn-cgi/nexp/v=2965651658/"},atok:"46d7245de8fe7573628a114e8d9dabf4",zone:"zonehmirrors.net",rocket:"0",apps:{"dnschanger_detector":{"fix_url":null}}}];document.write('<script type="text/javascript" src="//ajax.cloudflare.com/cdn-cgi/nexp/v=3037830340/cloudflare.min.js"><'+'\/script>')}}catch(a){};
  17. //]]>
  18. </script>
  19. <script type="text/javascript">
  20. //<![CDATA[
  21. window.__CF=window.__CF||{};window.__CF.AJS={"dnschanger_detector":{"fix_url":null}};
  22. //]]>
  23. </script>
  24.  
  25. <title> | [ Hacked By 'ANONXY   ] |</title>
  26.  
  27. <script src="http://code.jquery.com/jquery-latest.min.js"></script>
  28.  
  29. <script>
  30. //
  31.  
  32. var current_type = 1;
  33. (function($) {
  34.  
  35.     function shuffle(a) {
  36.         var i = a.length, j;
  37.         while (i) {
  38.             var j = Math.floor((i--) * Math.random());
  39.             var t = a[i];
  40.             a[i] = a[j];
  41.             a[j] = t;
  42.         }
  43.     }
  44.  
  45.     function randomAlphaNum() {
  46.         var rnd = Math.floor(Math.random() * 62);
  47.         if (rnd >= 52) return String.fromCharCode(rnd - 4);
  48.         else if (rnd >= 26) return String.fromCharCode(rnd + 71);
  49.         else return String.fromCharCode(rnd + 65);
  50.     }
  51.  
  52.     $.fn.rot13 = function() {
  53.         this.each(function() {
  54.             $(this).text($(this).text().replace(/[a-z0-9]/ig, function(chr) {
  55.                 var cc = chr.charCodeAt(0);
  56.                 if (cc >= 65 && cc <= 90) cc = 65 + ((cc - 52) % 26);
  57.                 else if (cc >= 97 && cc <= 122) cc = 97 + ((cc - 84) % 26);
  58.                 else if (cc >= 48 && cc <= 57) cc = 48 + ((cc - 43) % 10);
  59.                 return String.fromCharCode(cc);
  60.             }));
  61.         });
  62.         return this;
  63.     };
  64.  
  65.     $.fn.scrambledWriter = function() {
  66.         this.each(function() {
  67.             var $ele = $(this), str = $ele.text(), progress = 0, replace = /[^\s]/g,
  68.                 random = randomAlphaNum, inc = 3;
  69.             $ele.text('');
  70.             var timer = setInterval(function() {
  71.                 $ele.text(str.substring(0, progress) + str.substring(progress, str.length - 1).replace(replace, random));
  72.                 progress += inc
  73.                 if (progress >= str.length + inc) { var nstr = $ele.text(); $ele.text(nstr.substring(0,nstr.length - 1));  current_type += 1; clearInterval(timer);}
  74.             }, 100);
  75.         });
  76.         return this;
  77.     };
  78.  
  79.     $.fn.typewriter = function() {
  80.         this.each(function() {
  81.             var $ele = $(this), str = $ele.html(), progress = 0;
  82.             $ele.html('');
  83.             var timer = setInterval(function() {
  84.                 $ele.html(str.substring(0, progress++) + (progress & 1 ? '_' : ''));
  85.                 if (progress >= str.length) { current_type += 1; clearInterval(timer);}
  86.             }, 100);
  87.         });
  88.      
  89.         return this;
  90.     };
  91.  
  92.     $.fn.unscramble = function() {
  93.         this.each(function() {
  94.             var $ele = $(this), str = $ele.text(), replace = /[^\s]/,
  95.                 state = [], choose = [], reveal = 25, random = randomAlphaNum;
  96.          
  97.             for (var i = 0; i < str.length; i++) {
  98.                if (str[i].match(replace)) {
  99.                    state.push(random());
  100.                    choose.push(i);
  101.                } else {
  102.                    state.push(str[i]);
  103.                }
  104.            }
  105.        
  106.            shuffle(choose);
  107.            $ele.text(state.join(''));
  108.        
  109.            var timer = setInterval(function() {
  110.                var i, r = reveal;
  111.                while (r-- && choose.length) {
  112.                    i = choose.pop();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement