Visualizzazione risultati 1 fino 1 di 1

Discussione: Background che cambia

  1. #1
    Guest

    Predefinito Background che cambia

    Salve, con i seguenti codici avrei intenzione di realizzare un sistema che fa cambiare il bg, ovviamente ho gia i codici js.
    Codice HTML:
    <html>
    <head>
    <script language="JavaScript"> 
    var image1 = "bg1.jpg";
    var image2 = "bg2.jpg";
    var image3 = "bg3.jpg";
    var imgNumber=1;
    var totleimage=3;
    var time=3;
    function Switchimg(counter)
    {
    if(counter < time)
    {
    counter++;
    document.roll.src = eval("image" + imgNumber);
    CallSwitchimg=window.setTimeout("Switchimg("+count er+")",1500);
    }
    else
    {
    if(imgNumber < totleimage)
    {
    imgNumber++;
    Switchimg(0);
    }
    else
    {
    imgNumber=1;
    Switchimg(0);
    }
    }
    }
    </script>
    </head> 
    <body onLoad="Switchimg(0)"> 
    <img src="bg1.jpg" height="350" width="450" border="0" name="roll">
    </body>
    </html>
    <style type="text/css">
    html, body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    }
    
    #sfondo{
    position:absolute;
    height:100%;
    width: 100%;
    margin: 0;
    padding: 0;
    }
    </style>



    ci sono anche i codici css a quanto vedete per rendere i bg a tutto schermo, pero come faccio per mettere quella che temporaneamente come visto nel codice è un immagine ,come un bg?
    Grazie in anticipo e scusate la mia ignoranza con la grafica xD
    Ultima modifica di javascripter : 10-05-2016 alle ore 17.10.42 Motivo: +[html]

Regole di scrittura

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