Visualizzazione risultati 1 fino 4 di 4

Discussione: [JS] codice rotazione banner funziona con IE, non con FF (era:Problema Banner)

  1. #1
    Guest

    Angry [JS] codice rotazione banner funziona con IE, non con FF (era:Problema Banner)

    Ciao...spero di aver postato nel posto giusto!!!!!

    Ho un problema con la rotazione dei banner nel mio sito:
    http://www.mrdistribuzione.net

    Con IE i banner effettuano la rotazione correttamente come da me impostata ogni 10 secondi.

    Con FF viene sempre visualizzato un solo banner e con link errato...

    Questo lo script che ho usato:

    <SCRIPT LANGUAGE="JavaScript">
    <!--
    var imgs = new Array ("http://www.imageurlhost.com/images/apy1mv3q6an4fxmz54g0.gif","http://piuvisite.it/banner/3.gif","http://www.vanfunds.com/images/banners/468x60a.gif","http://img21.imageshack.us/img21/2299/mybannerglitter97f26556.gif","http://mbmfiles.com/Aug2009/090823-lnD1dWOvFP8A.gif","http://img87.imageshack.us/img87/3829/mybannerglitteraca6b281.gif")
    var lnks = new Array ("http://www.eurosafelist.com//index.php?ref=roberto62","http://piuvisite.it/s.php?roberto62","http://www.vanfunds.com/index.html?ref=tino62","http://www.redblack60.ws","http://www.mrdistribuzione.net/pubblicita.html","http://www.fullmarketing.gigacenter.it")
    var altimg = new Array ("Eurosafelist","Piu Visite","VanFunds","RedBlack60","MRdistribuzione", "FullMarketing GigaCenter")
    var currentAd = 0
    var imgCt = 6
    function cycle() {
    currentAd++
    if (currentAd == imgCt) {
    currentAd=0
    }
    document.adBanner.src=imgs[currentAd]
    document.adBanner.alt=altimg[currentAd]
    adLink.href=lnks[currentAd]
    setTimeout("cycle()",10 * 1000)
    }
    //-->
    </SCRIPT>

    <a href="http://www.eurosafelist.com//index.php?ref=roberto62" name="adLink" target="_blank"><img src="http://www.imageurlhost.com/images/apy1mv3q6an4fxmz54g0.gif" name="adBanner" border="0" width="468" height="60"></a>

    <SCRIPT LANGUAGE="JavaScript">
    <!--
    cycle()
    //-->
    </SCRIPT>


    Qualcuno sa o può aiutarmi!!??

    Grazie Roberto

  2. #2
    Guest

    Predefinito

    prova questo:

    codice da mettere nell'head

    Codice PHP:
    <script type="text/javascript">
    /****
    * Banner Ad Rotater v3.02
    * Anarchos > anarchos3@hotmail.com
    * http://anarchos.xs.mw/bannerad.phtml
    **/

    function Banner(refreshTime, width, height, altText, start, random){
    this.objName = "bannerAd" + (Banner.count++);
    eval(
    this.objName + "=this");
    if (!
    refreshTime) this.refreshTime = 5000; else this.refreshTime = refreshTime*1000;
    if (!
    width) this.width = 460; else this.width = width;
    if (!
    height) this.height = 68; else this.height = height;
    if (
    random == null) this.random = 1; else this.random = random;
    this.altText = altText;
    this.ads = [];
    if (
    start) this.currentAd = start-1; else start = null;
    this.mySize = 0;

    this.Ad = function(src, href, target, mouseover) {
    var
    tempImage = new Image();
    tempImage.src = src;
    this.ads[this.mySize] = new Object();
    var
    ad = this.ads[this.mySize];
    ad.src = src;
    if (
    typeof(target) == "undefined" || target == null) ad.target = "_self"; else ad.target = target;
    ad.href = href;
    ad.mouseover = mouseover;
    this.mySize++;
    }

    this.link = function(){
    var
    ad = this.ads[this.currentAd];
    if (
    ad.target == "_self"){
    location.href = ad.href;
    }
    else if (
    ad.target == "_blank" || ad.target == "_new"){
    open(ad.href,this.objName + "Win");
    }
    else
    top.frames[ad.target].location.href = ad.href;
    }

    this.showStatus = function(){
    var
    ad = this.ads[this.currentAd];
    if (
    ad.mouseover) status = ad.mouseover;
    else
    status = ad.href;
    }

    this.randomAd = function(){
    var
    n;
    do {
    n = Math.floor(Math.random() * (this.mySize)); }
    while(
    n == this.currentAd);
    this.currentAd = n;
    }

    this.output = function(){
    var
    tempCode = "";
    if (
    this.mySize > 1){
    if (
    this.currentAd == null) this.randomAd();
    if (
    this.currentAd >= this.mySize) this.currentAd = this.mySize - 1;
    tempCode = '<a href="javascript:'+this.objName+'.link();"';
    tempCode += ' onMouseOver="' + this.objName + '.showStatus(); return true"';
    tempCode += ' onMouseOut="status=\'\';return true">';
    tempCode += '<img src="' + this.ads[this.currentAd].src + '" width="' + this.width;
    tempCode += '" name="' + this.objName + 'Img" height="' + this.height + '" ';
    if (
    this.altText) tempCode += 'alt="'+this.altText + '" ';
    tempCode += 'border="0" /></a>';
    document.write(tempCode);
    this.nextAd();
    } else
    document.write("Error: two banners must be defined for the script to work.");
    }

    this.newAd = function(){
    if (!
    this.random){
    this.currentAd++;
    if (
    this.currentAd >= this.mySize)
    this.currentAd = 0;
    }
    else {
    this.randomAd();
    }
    this.nextAd();
    }

    this.nextAd = function(){
    document.images[this.objName+ 'Img'].src = this.ads[this.currentAd].src;
    setTimeout(this.objName+'.newAd()',this.refreshTime)
    }
    }
    Banner.count = 0;
    </script>

    codice da mettere per il banner

    Codice PHP:
    <script type="text/javascript">
    <!--
    /*
    parameters for Banner() are: time between rotations (seconds), width of banners, height of banners, alt text, starting banner, and random (0 means it iterates through banners, 1 means it randomly picks the next banner).
    parameters for Ad() are: path to image, url, target (use "_blank" to open in a new window), and mouseover message. For most of these parameters, a null tells the script to use the default value.
    */
    myAd = new Banner( 5, 468, 60, "Errore nella visualizzazione del banner!", 1, 0 );
    myAd.Ad( "http://www.imageurlhost.com/images/apy1mv3q6an4fxmz54g0.gif", "http://www.eurosafelist.com//index.php?ref=roberto62","_blank", "Eurosafelist" );
    myAd.Ad( "http://piuvisite.it/banner/3.gif", "http://piuvisite.it/s.php?roberto62","_blank", "Più visite" );
    myAd.Ad( "http://www.vanfunds.com/images/banners/468x60a.gif", "http://www.vanfunds.com/index.html?ref=tino62", "_blank", "Varfunds" );
    myAd.Ad( "http://img21.imageshack.us/img21/2299/mybannerglitter97f26556.gif", "http://www.redblack60.ws", "_blank", "Redblack60" );
    myAd.Ad( "http://mbmfiles.com/Aug2009/090823-lnD1dWOvFP8A.gif", "http://www.mrdistribuzione.net/pubblicita.html", "_blank", "MRdistribuzione" );
    myAd.Ad( "http://img87.imageshack.us/img87/3829/mybannerglitteraca6b281.gif", "http://www.fullmarketing.gigacenter.it", "_blank", "Fullmarketing GigaCenter" );
    myAd.output();
    // -->

    </script>
    Ultima modifica di edo98 : 01-09-2009 alle ore 16.26.56

  3. #3
    Guest

    Predefinito

    Grazie Funziona!!!!
    Ma se devo aggiornare sufficente cambiare i link ed le URL delle immagini...Giusto!!!

  4. #4
    Guest

    Predefinito

    si!

    basta aggiungere una nuova linea:

    myAd.Ad( "immagine", "link", "_blank", "titolo" );

Regole di scrittura

  • Non puoi creare nuove discussioni
  • Non puoi rispondere ai messaggi
  • Non puoi inserire allegati.
  • Non puoi modificare i tuoi messaggi
  •