• Fruitsnow

    <script src="fruitsnow.js" type="text/javascript"></script>
    <script type="text/javascript" src="http://beneposto.pl/jqueryrotate/js/jQueryRotateCompressed.js"></script>
    <script type="text/javascript">
    //<![CDATA[
    window.onload = function() {

    function timeouts() {
    setTimeout(function () {
    fruitfall();
    timeouts();
    }, 10000);
    }
    timeouts();
    fruitfall();

    var rotation = function (){
    jQuery(".auglis1").rotate({
    angle:0,
    animateTo:360,
    duration: 2000,
    callback: rotation,
    easing: function (x,t,b,c,d){
    return c*(t/d)+b;
    }
    });
    }
    rotation();

    var rotation2 = function (){
    jQuery(".auglis2").rotate({
    angle:360,
    animateTo:0,
    duration: 2000,
    callback: rotation2,
    easing: function (x,t,b,c,d){
    return c*(t/d)+b;
    }
    });
    }
    rotation2();

    };
    //]]>
    </script>

    fruitsnow.js

    for (i=1; i<9; i++){
    jQuery("#clickban").after("<img id='br"+i+"' class='auglis"+Math.floor((Math.random() * 2) + 1)+"' src='/augli/"+i+".png' style='width:100px;z-index:-1;position:absolute;right:30px;top:-200px;'>");
    }

    function rightfall(kurs){
    setTimeout(function(){
    var bar1 = jQuery('#br'+kurs);
    bar1.animate({top: jQuery(document).height()-200}, Math.floor((Math.random() * 10000) + (10000)), "linear", function() {
    //bar1.hide();
    bar1.css("top","-200px");
    });
    }, Math.floor((Math.random() * 8000) + ((kurs-1)*2000)));
    }

    for (i=1; i<9; i++){
    jQuery("#clickban").after("<img id='fr"+i+"' class='auglis"+Math.floor((Math.random() * 2) + 1)+"' src='/augli/"+i+".png' style='width:100px;z-index:-1;position:absolute;left:30px;top:-200px;'>");
    }

    function leftfall(kurs){
    setTimeout(function(){
    var bar1 = jQuery('#fr'+kurs);
    bar1.animate({top: jQuery(document).height()-200}, Math.floor((Math.random() * 10000) + (10000)), "linear", function() {
    //bar1.hide();
    bar1.css("top","-200px");
    });
    }, Math.floor((Math.random() * 8000) + ((kurs-1)*2000)));
    }

    function fruitfall(){
    for (i=1; i<9; i++){
    rightfall(i);
    leftfall(i);
    }
    }


1111111