Visualizzazione dei risultati da 1 a 3 su 3
  1. #1
    Utente di HTML.it
    Registrato dal
    May 2006
    Messaggi
    26

    Image Gallery in Javascript

    Ciao a tutti,
    sto sviluppando una galleria di immagini in javascript con il seguente codice
    <html>

    <head>
    <script language="JavaScript">

    <!--

    function newWin(foto)
    {
    nImage = new Image();
    nImage.src = foto;
    width = screen.width;
    height = screen.height;
    i = nImage.width;
    j = nImage.height;
    k = 'no';
    if (i > screen.width)
    {
    i = screen.width - 80;
    j = nImage.height + 30;
    k = 'yes';
    }
    if (j > screen.height)
    {
    j = screen.height - 100;
    i = nImage.width + 40;
    k = 'yes';
    }
    if (width == 0 || height == 0)
    {
    i = 640;
    j = 480;
    k = 'yes';
    }
    else
    {
    i = i + 40
    j = j + 30
    }
    myWin= open("", "_blank",
    "width="+i+",height="+j+",status=no,toolbar=no,men ubar=no,scrollbars="+k+",resizable="+k+"");
    myWin.document.open();
    myWin.document.write("<html><head><title>titolo</title></head><body bgcolor='#C0C0C0' leftmargin='7'><p align='center' style='margin-left: 10; margin-top: 10'><img border='0' src='");
    myWin.document.write(foto);
    myWin.document.write("'></p></body></html>");
    myWin.document.close();}

    //-->

    </script>

    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <title>New Page 4</title>
    </head>

    <body bgcolor="black">
    <p align="center">
    [img]1.jpg[/img]
    [img]2.jpg[/img]
    [img]3.jpg[/img]
    </p>

    </body>

    </html>
    Però vorrei aggiungere un effetto shadow sulle thumbnail
    come faccio?

  2. #2

  3. #3
    Utente di HTML.it
    Registrato dal
    May 2006
    Messaggi
    26
    grazie!

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.