mardi 8 décembre 2015

test 6

Test

Couleur :

Age :

Distance :

0%


0
#pwidget { background-color:lightgray; width:254px; padding:2px; -moz-border-radius:3px; border-radius:3px; text-align:left; border:1px solid gray; } #progressbar { width:250px; padding:1px; background-color:white; border:1px solid black; height:28px; } #indicator { width:0px; background-image:url("shaded-green.png"); height:28px; margin:0; } #progressnum { text-align:center; width:250px; } var maxprogress = 250; // total à atteindre var actualprogress = 0; // valeur courante var itv = 0; // id pour setinterval function prog() { if(actualprogress >= maxprogress) { clearInterval(itv); return; } var progressnum = document.getElementById("progressnum"); var indicator = document.getElementById("indicator"); actualprogress += 1; indicator.style.width=actualprogress + "px"; progressnum.innerHTML = actualprogress; if(actualprogress == maxprogress) clearInterval(itv); }



25%
35%

Aucun commentaire:

Enregistrer un commentaire