Visualizzazione dei risultati da 1 a 5 su 5

Discussione: Rotazione banner

  1. #1

    Rotazione banner

    Come è possibile gestire contemporaneamente 2 o più banner rotanti sulla stessa pagina in javascript

    Grazie e saluti
    Giovanni

  2. #2
    Ti giro l'aiuto che han dato a me.

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

    <html>
    <head>
    <title>Untitled</title>
    <script language="JavaScript" type="text/javascript">
    <!--
    var tIdX = '';
    var imgIndex = -1;
    var arrImg = new Array();
    var speed = 4000;

    arrImg[0] = "http://localhost/site2//ima/presentation/eglise.jpg";
    arrImg[1] = "http://localhost/site2//ima/presentation/vues_loyettes.jpg";
    arrImg[2] = "http://localhost/site2//ima/presentation/far.jpg";
    arrImg[3] = "http://localhost/site2//ima/presentation/mairie.jpg";

    function animateX() {
    clearTimeout(tIdX);
    if (imgIndex < arrImg.length-1) {
    imgIndex++;
    } else {
    imgIndex = 0;
    } // if (imgIndex <= arrImg.lenght-1)
    document.getElementById('myImg').src = arrImg[imgIndex];
    document.getElementById('myImg').alt = imgIndex;
    tIdX=setTimeout('animateX()', speed);
    } // function animateX()

    //-->
    </script>
    </head>
    <body>

    [img][/img]

    <script language="JavaScript" type="text/javascript">
    <!--
    animateX();
    //-->
    </script>

    </body>

    </html>

    Ciao.

  3. #3
    Molte grazie. Funziona.

    Ciao
    Giovanni

  4. #4
    Benissimo, non è farina del mio sacco ma son contento che ti sia servito.
    Se puoi postami il codice della pagina, io ho avuto dei problemi nel posizionamento degli scipts e mi piacerebbe vedere come hai realizzato la tua pagina.

    ciao e grazie.

  5. #5
    salve...ho visto l'esempio e anche a me funziona benissimo, ma se voglio mettere un link per ogni banner come posso fare?
    grazie mille
    ciao

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.