README.md
October 27, 2023 · View on GitHub

A simple and dynamic way to create horizontal and/or circular progress bars in your HTML without javascript.You can customize it however you like, but only one attribute is needed to make the magic happen 😌 🪄
👀 Demo
Click here to try it on Codepen!
Show video
https://github.com/refusado/progress.css/assets/89546855/09c44cb6-c1a2-4ebc-8c52-3ffc0721ceb0
🦾 Features
- Easily create horizontal and circular progress bars.
- No javascript is required.
- Insert labels/texts.
- Customize colors and sizes quickly and easily.
- Its not necessary to modify the HTML, only one element to add the attribute.
- Edit the progress bar as any element on the page without worrying about breaking styles.
- Create groups of multiple progress bars.
- Simple and intuitive implementation.
🔨 Getting Started
To start using the Progress.css, follow these steps:
-
Include the CSS file in your project:
Using npm
Install
npm install progress.cssAnd include the file in your html
<link rel="stylesheet" href="path/to/progress.css">Via CDN
You can also just include the file in your html via CDN without installing.
<link rel="stylesheet" href="https://unpkg.com/progress.css/progress.min.css">Or:
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/refusado/progress.css/progress.min.css">CSS import
Import a CDN url into your css file
@import url(https://unpkg.com/progress.css/progress.min.css); -
Make your element a progress bar:
One by one
Add the
data-pssattribute to your HTML tag and it will become a progress bar. To choose the percentage, type the value of the percentage into the CSS variable--pss-value. ⚠️ Do not put the "%" symbol, just the number.<div data-pss style="--pss-value: 94"></div>Many at once
If you want to style several at once, use the
data-pss-containerattribute on the container of the elements you want to turn into progress bars.<div data-pss-container> <div style="--pss-value: 25"></div> <div style="--pss-value: 50"></div> <div style="--pss-value: 75"></div> <div style="--pss-value: 100"></div> </div> -
Customize the progress bar:
Horizontal and cirular bars
The
data-pssattribute will create a horizontal progress bar by default, but if you want a radial progress bar instead,t add the value "rad" to this attribute.<div data-pss="rad" style="--pss-value: 30"></div>Variables
These are the CSS variables that define the progress bar settings, they all have a default value but can be changed by reassigning the variable value. This can be done either in the document styles CSS file or with inline CSS.
Variable Description --pss-valuePercentage filled. Default: 65 --pss-leftColor of the left fill. Default: #08a33e --pss-rightColor of the right fill. Default: #DDF4F9 --pss-centerCenter color of radial progress bars. Default: #14975a --pss-widthRadial progress bar width. Default: .4rem Texts/labels
To add text to a horizontal progress bar, use the
aria-label="[text]"attribute. You can also add the text inside the element's tag, the difference is that this text will not be centered inside the filled part of the bar. It's recommended that you use the first method.<div data-pss style="--pss-value: 48" aria-label="48%"></div>For radial progress bars there is no additional attribute, just place your text inside the element
<div data-pss="rad" style="--pss-value: 80">8/10</div>
👥 Contributing
Contributions are welcome! If you'd like to contribute to project, please follow these steps:
- Fork the repository and clone it to your local machine.
- Make your changes, whether it's a bug fix, feature enhancement, or documentation improvement.
- Test your changes to ensure they work as intended.
- Commit your changes with messages.
- Push your changes to your forked repository.
- Submit a pull request to the main repository.
Thank you for considering contributing to Progress.css! Your help is greatly appreciated.
🖌 Contributors
🔓 License
This project is licensed under the MIT License. See the LICENSE file for more information about the terms of use.

Um jeito simples e dinâmico para criar uma barra de progresso horizontal e/ou circular em seu projeto HTML sem utilizar javascript. Você também pode customizá-la quando e como quiser, apenas um atributo é necessário para fazer a mágica acontecer 😌 🪄
👀 Demonstração
Clique aqui para tentar no Codepen!
Mostrar vídeo
https://github.com/refusado/progress.css/assets/89546855/09c44cb6-c1a2-4ebc-8c52-3ffc0721ceb0
🦾 Características
- Criar barras de progresso circulares e horizontais facilmente.
- Javascript não é necessário.
- Insira textos/rótulos.
- Customize as cores e tamanhos de maneira fácil e rápida.
- Não é necessário modificar o HTML, apenas um elemento para adicionar o atributo.
- Edite o progresso da barra com qualquer elemento na página sem se preocupar com a quebra dos estilos.
- Crie múltiplos grupos de barras de progresso.
- Implementação simples e intuitiva.
🔨 Mão na massa
Para iniciar utilizando o Progress.css, siga os seguintes passos:
-
Inclua o arquivo CSS no seu projeto:
Usando npm
Instale
npm install progress.cssE inclua o arquivo no seu HTML
<link rel="stylesheet" href="path/to/progress.css">Via CDN
Você também pode apenas incluir o arquivo no seu HTML via CDN, sem nenhuma instalação.
<link rel="stylesheet" href="https://unpkg.com/progress.css/progress.min.css">Ou:
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/refusado/progress.css/progress.min.css">Importar CSS
Importe uma url CDN para seu arquivo CSS
@import url(https://unpkg.com/progress.css/progress.min.css); -
Faça do seu elemento uma barra de progresso:
Uma por uma
Adicione o atributo
data-pssà sua tag HTML e ela se tornará uma barra de progresso. Para escolher a porcentagem, digite o valor dela dentro da variável CSS--pss-value. ⚠️ Não use o símbolo de porcentagem “%”, utilize apenas o número.<div data-pss style="--pss-value: 94"></div>Várias de uma vez
Se você quiser editar várias de uma vez, use o atributo
data-pss-containerno contêiner dos elementos que você deseja transformar em uma barra de progresso.<div data-pss-container> <div style="--pss-value: 25"></div> <div style="--pss-value: 50"></div> <div style="--pss-value: 75"></div> <div style="--pss-value: 100"></div> </div> -
Customize a barra de progresso:
Barras horizontais e circulares
O atributo
data-psscriará uma barra de progresso horizontal por padrão, mas se você quiser uma barra de progresso radial, adicione o valor “rad” à esse atributo.<div data-pss="rad" style="--pss-value: 30"></div>Variáveis
Essas são as variáveis CSS que definem as configurações da barra de progresso, todas possuem um valor padrão, mas podem ser alterados reatribuindo um valor para essa variável. Isso pode ser feito no arquivo CSS de estilos no documento ou em um CSS embutido.
Variáveis Descrição --pss-valuePreenchimento da porcentagem. Padrão: 65 --pss-leftCor do preenchimento esquerdo. Padrão: #08a33e --pss-rightCor do preenchimento direito. Padrão: #DDF4F9 --pss-centerCor central das barras de progresso radiais. Padrão: #14975a --pss-widthTamanho da barra de progresso radial. Padrão: .4rem Textos/rótulos
Para adicionar um texto à uma barra de progresso horizontal, use o atributo
aria-label="[text]". Você também pode adicionar o texto dentro da tag do elemento, a diferença é que o texto não ficará centralizado na parte preenchida da barra. Por isso é recomendado que utilize o primeiro método.<div data-pss style="--pss-value: 48" aria-label="48%"></div>Para barras de progresso radiais não há nenhum atributo adicional, apenas insira o texto dentro do elemento.
<div data-pss="rad" style="--pss-value: 80">8/10</div>
👥 Contribuindo para o projeto
Contribuições são bem-vindas! Se você deseja contribuir para o projeto, siga os seguintes passos:
- Faça uma bifurcação do repositório e copie o arquivo em sua máquina local.
- Faça suas adaptações, sejam elas uma fixação de um bug, implementação de funcionalidades ou melhoria na documentação.
- Teste suas alterações para ter certeza de que estão em perfeito funcionamento.
- Faça uma Commit das alterações com mensagens.
- Envie suas alterações para o repositório bifurcado.
- Submeta uma Pull Request para o repositório principal.
Obrigado por considerer contribuir com Project.css! Sua ajuda é muito apreciada.
🖌 Contribuidores
🔓 Licença
Esse projeto é licenciado sob a liçenca do MIT. Veja o arquivo LICENSE para mais informações sobre os termos de uso.