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 😌 🪄
Click here to try it on Codepen!
Show video
demo.mp4
- 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.
To start using the Progress.css, follow these steps:
-
Include the CSS file in your project:
Install
npm install progress.css
And include the file in your html
<link rel="stylesheet" href="path/to/progress.css">
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">
Import a CDN url into your css file
@import url(https://unpkg.com/progress.css/progress.min.css);
-
Make your element a progress bar:
Add the
data-pss
attribute 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>
If you want to style several at once, use the
data-pss-container
attribute 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:
The
data-pss
attribute 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>
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-value
Percentage filled. Default: 65 --pss-left
Color of the left fill. Default: #08a33e --pss-right
Color of the right fill. Default: #DDF4F9 --pss-center
Center color of radial progress bars. Default: #14975a --pss-width
Radial progress bar width. Default: .4rem 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>
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.
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 😌 🪄
Clique aqui para tentar no Codepen!
Mostrar vídeo
demo.mp4
- 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.
Para iniciar utilizando o Progress.css, siga os seguintes passos:
-
Inclua o arquivo CSS no seu projeto:
Instale
npm install progress.css
E inclua o arquivo no seu HTML
<link rel="stylesheet" href="path/to/progress.css">
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">
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:
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>
Se você quiser editar várias de uma vez, use o atributo
data-pss-container
no 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:
O atributo
data-pss
criará 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>
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-value
Preenchimento da porcentagem. Padrão: 65 --pss-left
Cor do preenchimento esquerdo. Padrão: #08a33e --pss-right
Cor do preenchimento direito. Padrão: #DDF4F9 --pss-center
Cor central das barras de progresso radiais. Padrão: #14975a --pss-width
Tamanho da barra de progresso radial. Padrão: .4rem 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>
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.
Esse projeto é licenciado sob a liçenca do MIT. Veja o arquivo LICENSE para mais informações sobre os termos de uso.