Problema input type range

Giovanni255

Utente Attivo
29 Set 2015
38
2
0
Salve a tutti,
Ho messo un range che mi modifica la velocità dello slideshow ma non funziona correttamente.
Codice:
codice:
<input id="r" type="range" min="500" max="5000" value="500" onchange="change(), img()">

function change(){
    var a = parseInt(document.getElementById('r').value);
    return a;
}


function img(){
    var a = change();
    if(document.getElementById('check').checked) {a = 2000;}
    $('.slideshow img:gt(0)').hide();
    setInterval(function img(){$('.slideshow :first-child').fadeOut().next('img').fadeIn().end().appendTo('.slideshow')},a);
}
 

Discussioni simili