folder Tahribat.com Forumları
linefolder Java
linefolder İlginç Ve Güzel Java Kodları



İlginç Ve Güzel Java Kodları

  1. KısayolKısayol reportŞikayet pmÖzel Mesaj
    meb_net
    meb_net's avatar
    Kayıt Tarihi: 02/Ekim/2004
    Erkek

    EMÝNÝM ARAYIP DA BULAMADIÐINIZ KODLARI BURADA BULACAKSINIZ.SORNUZ OLURSA ÝLGÝLENMEYE ÇALIÞIRIM.


    kalp yaðmuru


    kalp gif i siz temin edeceksiniz


    <!-- ONE STEP TO INSTALL FLOATING HEARTS:


    1. Copy the coding into the BODY of your HTML document -->


    <!-- STEP ONE: Paste this code into the BODY of your HTML document -->


    <BODY>


    <SCRIPT LANGUAGE="JavaScript1.2">
    <!-- Original: Adnan DAN (horozz@horozz.net) -->
    <!-- Web Site: http://www.horozz.net -->



    <!-- Begin
    var no = 12; // number of hearts
    var speed = 10; // smaller number moves the hearts faster
    var heart ="heart.gif";
    var flag;
    var ns4up = (document.layers) ? 1 : 0; // browser sniffer
    var ie4up = (document.all) ? 1 : 0;


    var dx, xp, yp; // coordinate and position variables
    var am, stx, sty; // amplitude and step variables
    var i, doc_width = 800, doc_height = 600;
    if (ns4up) {
    doc_width = self.innerWidth;
    doc_height = self.innerHeight;
    } else if (ie4up) {
    doc_width = document.body.clientWidth;
    doc_height = document.body.clientHeight;
    }
    dx = new Array();
    xp = new Array();
    yp = new Array();
    amx = new Array();
    amy = new Array();
    stx = new Array();
    sty = new Array();
    flag = new Array();
    for (i = 0; i < no; ++ i) {
    dx = 0; // set coordinate variables
    xp = Math.random()*(doc_width-30)+10; // set position variables
    yp = Math.random()*doc_height;
    amy = 12+ Math.random()*20; // set amplitude variables
    amx = 10+ Math.random()*40;
    stx = 0.02 + Math.random()/10; // set step variables
    sty = 0.7 + Math.random(); // set step variables
    flag = (Math.random()>0.5)?1:0;
    if (ns4up) { // set layers
    if (i == 0) {
    document.write("<layer name=\"dot"+ i +"\" left=\"15\" ");
    document.write("top=\"15\" visibility=\"show\"><img src=\"");
    document.write(heart+ "\" border=\"0\"></layer>");
    } else {
    document.write("<layer name=\"dot"+ i +"\" left=\"15\" ");
    document.write("top=\"15\" visibility=\"show\"><img src=\"");
    document.write(heart+ "\" border=\"0\"></layer>");
    }
    } else
    if (ie4up) {
    if (i == 0) {
    document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
    document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
    document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\"");
    document.write(heart+ "\" border=\"0\"></div>");
    } else {
    document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
    document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
    document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\"");
    document.write(heart+ "\" border=\"0\"></div>");
    }
    }
    }


    function snowNS() { // Netscape main animation function
    for (i = 0; i < no; ++ i) { // iterate for every dot
    if (yp > doc_height-50) {
    xp = 10+ Math.random()*(doc_width-amx-30);
    yp = 0;
    flag=(Math.random()<0.5)?1:0;
    stx = 0.02 + Math.random()/10;
    sty = 0.7 + Math.random();
    doc_width = self.innerWidth;
    doc_height = self.innerHeight;
    }
    if (flag)
    dx += stx;
    else
    dx -= stx;
    if (Math.abs(dx) > Math.PI) {
    yp+=Math.abs(amy*dx);
    xp+=amx*dx;
    dx=0;
    flag=!flag;
    }
    document.layers["dot"+i].top = yp + amy*(Math.abs(Math.sin(dx)+dx));
    document.layers["dot"+i].left = xp + amx*dx;


    }
    setTimeout("snowNS()", speed);
    }


    function snowIE() { // IE main animation function
    for (i = 0; i < no; ++ i) { // iterate for every dot
    if (yp > doc_height-50) {
    xp = 10+ Math.random()*(doc_width-)


    sayfada baþa dön kodu


    <a href="#Top"> ßunu Eklersen Baþa Dön Yazýsýný Týkladýðýnda Sayfanýn En Üstüne Çýkarýsn. Yapacaðýn Tek þey Baþa Dön'ü Neryee Koyacaksan



    <a href="#Top">Baþa Dön


    sað tuþ ve seçme engeli


    <BODY oncontextmenu="return false" onselectstart="return false" ondragstart="return false">
    ...
    </BODY>


     


    uzayda yolculuk


    <script language="JavaScript">
    <!-- Starfield -


    n=20;// Number of stars!
    n4=(document.layers);
    ie=(document.all);


    for (i=0; i < n; i++){
    if (n4)
    document.write("<layer name='stars"+i+"' top=0 left=0 bgcolor=#ffffff width=1 height=1></layer>");
    else
    document.write('<div id="stars'+i+'" style="position:absolute;width:1px;height:1px;background:#ffffff;font-size:1px">.</div>');
    }


    h=0;
    w=0;
    cy=0;
    cx=0;


    y=new Array();
    x=new Array();
    iy=new Array();
    ix=new Array();
    dir=new Array();
    v=new Array();
    ds=new Array();
    ac=new Array();


    for (i=0; i < n; i++){
    iy=Math.random()*h;
    ix=Math.random()*w;
    y=iy;
    x=ix;
    v=1.3;
    ac=0;
    ds=0;
    }


    function fly(){
    h=(ie)?document.body.clientHeight:window.innerHeight;
    w=(ie)?document.body.clientWidth:window.innerWidth;
    sy=(ie)?document.body.scrollTop:window.pageYOffset;
    sx=(ie)?document.body.scrollLeft:window.pageXOffset;
    cy=Math.floor((h/2));
    cx=Math.floor((w/2));
    for (i=0; i < n; i++){
    divs=(n4)?document.layers["stars"+i]:document.getElementById("stars"+i).style;


    ay=y-cy;
    ax=x-cx;
    dir=Math.atan2(ay,ax)*180/Math.PI;


    v+=ac;
    v+=(v/10);


    if (v > 0.4 && v < 0.5){
    if (!n4){divs.fontSize=2;divs.height=2;divs.width=2}
    else{divs.clip.height=2;divs.clip.width=2}
    }
    if (v > 10){
    if (!n4){divs.fontSize=2;divs.height=2;divs.width=2;}
    else{divs.clip.height=2;divs.clip.width=2;}
    }
    if (v > 20){
    if (!n4){divs.fontSize=3;divs.height=3;divs.width=3}
    else{divs.clip.height=3;divs.clip.width=3}
    }
    if (v > 30){
    if (!n4){divs.fontSize=5;divs.height=5;divs.width=5}
    else{divs.clip.height=5;divs.clip.width=5}
    }


    y+=v*Math.sin(dir*Math.PI/180);
    x+=v*Math.cos(dir*Math.PI/180);


    if (y < 0 || y > h-Math.round(v) || x < 0 || x > w-Math.round(v)){
    iy=Math.random()*h;
    ix=Math.random()*w;
    y=iy;
    x=ix;
    dx=cy-y;
    dy=cx-x;
    ds=Math.sqrt(dy*dy+dx*dx);
    ac+=(-(ds*ds)+(160000))/(100000000);//?
    v=Math.floor(ds/40);
    if (!n4){divs.fontSize=1;divs.height=1;divs.width=1}
    else{divs.clip.height=1;divs.clip.width=1}
    }
    divs.top=y+sy;
    divs.left=x+sx;
    }
    setTimeout('fly()',10);
    }
    fly();
    // -->
    </script>


     


    matrix arka plan


    <html>


    <head>
    <meta http-equiv="Content-Language" content="tr">
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1254">
    <meta name="GENERATOR" content="Microsoft FrontPage 5.0">
    <meta name="ProgId" content="FrontPage.Editor.Document">
    <meta name="Microsoft Theme" content="none">
    </head>


    <body bgcolor="#000000"></body>


    </html>
    <script language="JavaScript">
    if (document.all){
    Cols=7;
    Cl=24; //Peþpeþe geliþ mesafeleri!
    Cs=40; //Sayfaya enine yayýlýþ mesafeleri!
    Ts=10; //Rakamlarýn büyüklükleri!
    Tc='#008800';//Renk
    Tc1='#00ff00';//Renk1
    MnS=22; //Akýþ hýzlarý!
    MxS=25; //Akýþ hýzlarý!
    I=Cs;
    Sp=new Array();S=new Array();Y=new Array();
    C=new Array();M=new Array();B=new Array();
    RC=new Array();E=new Array();Tcc=new Array(0,1,7,9,3,2);
    document.write("<div id='Container' style='position:absolute;top:0;left:-"+Cs+"'>");
    document.write("<div style='position:relative'>");
    for(i=0; i < Cols; i++){
    S=I+=Cs;
    document.write("<div id='A' style='position:absolute;top:0;font-family:Arial;font-size:"
    +Ts+"px;left:"+S+";width:"+Ts+"px;height:0px;color:"+Tc+";visibility:hidden'></div>");
    }
    document.write("</div></div>");


    for(j=0; j < Cols; j++){
    RC[j]=1+Math.round(Math.random()*Cl);
    Y[j]=0;
    Sp[j]=Math.round(MnS+Math.random()*MxS);
    for(i=0; i < RC[j]; i++){
    B='';
    C=Math.round(Math.random()*1)+' ';
    M[j]=B[0]+=C;
    }
    }
    function Cycle(){
    Container.style.top=window.document.body.scrollTop;
    for (i=0; i < Cols; i++){
    var r = Math.floor(Math.random()*Tcc.length);
    E = '<font color='+Tc1+'>'+Tcc[r]+'</font>';
    Y+=Sp;


    if (Y > window.document.body.clientHeight){
    for(i2=0; i2 < Cols; i2++){
    RC[i2]=1+Math.round(Math.random()*Cl);
    for(i3=0; i3 < RC[i2]; i3++){
    B[i3]='';
    C[i3]=Math.round(Math.random()*1)+' ';
    C[Math.floor(Math.random()*i2)]=' '+' ';
    M=B[0]+=C[i3];
    Y=-Ts*M.length/1.5;
    A.style.visibility='visible';
    }
    Sp=Math.round(MnS+Math.random()*MxS);
    }
    }
    A.style.top=Y;
    A.innerHTML=M+' '+E+' ';
    }
    setTimeout('Cycle()',20)
    }
    Cycle();
    }
    </script>


    devamý taleplere göre gelecek...


    to be continued....


    M.E.B. Ne biliyorsan öğret ki onlarda bilsin.
  2. KısayolKısayol reportŞikayet pmÖzel Mesaj
    ZoRKaYa
    ZoRKaYa's avatar
    Kayıt Tarihi: 18/Eylül/2007
    Erkek

    Java demissin ama bu javascript dostum

Toplam Hit: 2434 Toplam Mesaj: 2