Une barre de progression en CSS (progress bar)
Informatie
Depuis HTML5, il est plus facile d'utiliser le composant <progress>Une barre de progression inversée
Le code HTML
Le code CSS
Code css (Style à insérer) (78 lignes)
/*! * Theme Name: 2018 * Version: 20181124-20241222_040405 * Description: style for the progress bars * * */#slideshowProgress { width: 100px; height: 25px; background-color: #1e1e20; background-color: var(--body-bg-color); } #slideshowProgress.lqd { width: 200px; height: auto; bottom: 10px; padding: 4px; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.25), 0 1px rgba(255,255,255,0.08); box-shadow: inset 0 1px 2px rgba(0,0,0,0.25), 0 1px rgba(255,255,255,0.08); vertical-align: middle; } #slideshowProgressBar:not(.lqd) { width: 0%; height: 25px; background-color: #c0c0c0; background-color: var(--body-color); text-align: right; line-height: 25px; color: #ffffff; -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; } #slideshowProgressBar.lqd { width: 100%; height: 16px; line-height: 16px; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; background-image: -webkit-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0.05)); background-image: -moz-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0.05)); background-image: -o-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0.05)); background-image: linear-gradient(to bottom,rgba(255,255,255,0.3),rgba(255,255,255,0.05)); -webkit-box-shadow: 0 0 1px 1px rgba(0,0,0,0.25), inset 0 1px rgba(255,255,255,0.1); box-shadow: 0 0 1px 1px rgba(0,0,0,0.25), inset 0 1px rgba(255,255,255,0.1); -webkit-transition: 0.1s linear; -moz-transition: 0.1s linear; -o-transition: 0.1s linear; transition: 0.1s linear; -webkit-transition-property: width; -moz-transition-property: width; -o-transition-property: width; transition-property: width; } #slideshowProgressBar.p5 { background-color: #f63a0f; color: #fff; } #slideshowProgressBar.p25 { background-color: #f27011; color: #300; } #slideshowProgressBar.p50 { background-color: #f2b01e; color: #000; } #slideshowProgressBar.p75 { background-color: #f2d31b; color: #000; } #slideshowProgressBar.p100 { background-color: #86e01e; color: #000; }
Animer une barre de progression
Cette méthode est facile à utiliser, mais ne permet pas par exemple d'interrompre la progression, comme on pourrait le faire avec un timer.
Code JavaScript (avec jquery animate()) (23 lignes)
$(function () { var progressPercent = 0; var pgDuration = 5000; var pgWidth = $("#slideshowProgress2").width(); $("#slideshowProgressBar2").animate({ width: pgWidth }, { easing:"linear", duration: pgDuration, //the argument in the step call back function will hold the // current position of the animated property - width in this case. step: function(currentWidth,fx) { progressPercent = Math.round((100/pgWidth)*currentWidth); $("#progressDelay2").text(progressPercent+"%"); }, complete: function() { $('#animatePB').prop("checked", false); $('#animatePB').removeAttr("disabled"); } }); });
Le composant <progress>
Affecter des valeurs à la barre de progression
Affecter une valeur à une barre de progression devient donc très facile:
$('#id_de_ma_barre').val(20);
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 04/01/2014 gemaakt, de laatste keer de 03/02/2021 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/css-progress-bar.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.