Individualizing page exchange time

0

In this script below it makes a page alternation, it already works perfectly for me, more precise that each page have different times of each other,

example:

  • page1.php is showing for 20 seconds

  • page2.php is displayed for 30 seconds

As I do not know anything about javascript I wanted a help how can I do this

<div id="latestData"></div>
<script src="http://code.jquery.com/jquery-latest.js"></script><script>$(function(){varminutos=1;//Umminutovarurls=["pagina1.php",
               "pagina2.php",
               "pagina3.php"

           ];

var i = 0; //Começa no item zero da array que no caso é o "tv1.php"
var total = urls.length; //Pega o total de itens

function getContadorMapa() {
    $.get(urls[i], function (result) {
        $('#latestData').html(result);
    }).always(function() {
        //Quando a requisição termina troca dispara always

        //Soma mais um a variável e assim passa para o proximo item do array
        i++;

        //Se i for maior que o tamanho do array então volta pra zero
        if (!(i < total)) {
             i = 0;
        }

        setTimeout(getContadorMapa, 60 * 300 * minutos);
    });
  }

  getContadorMapa();
  });
  </script>
    
asked by anonymous 19.06.2017 / 17:05

1 answer

1

I changed the function by adding the var time, each position corresponds to the time position of the url, so you can modify it as you like.

$(function () {
        var urls = [
           "pagina1.php",
           "pagina2.php",
           "pagina3.php"
        ];

        var tempo = [
            0.1,
            0.5,
            0.3
        ];

        var i = 0;
        var total = urls.length;

        function getContadorMapa() {
            $.get(urls[i], function (result) {
                $('#latestData').html(result);
            }).always(function () {
                //Quando a requisição termina troca dispara always

                //Soma mais um a variável e assim passa para o proximo item do array
                setTimeout(getContadorMapa, 60 * 300 * tempo[i]);
                i++;
                //Se i for maior que o tamanho do array então volta pra zero
                if (!(i < total)) {
                    i = 0;
                }

            });
        }

        getContadorMapa();
    });
    
19.06.2017 / 17:26