Download the PHP package gaomingcode/bootstrap.progressbar without Composer

On this page you can find all versions of the php package gaomingcode/bootstrap.progressbar. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package bootstrap.progressbar

bootstrap-progressbar

GitHub Version Packagist Downloads Github License

Installation

Composer

ReadMe from Origin

bootstrap-progressbar is a jQuery plugin which extends the basic twitter-bootstrap progressbar. It provides the ability to animate the progressbar by adding Javascript in combination with the preexisting css transitions. Additionally you can display the current progress information in the bar or get the value via callback.

What's new in v0.9.0?

Note: this version replaces the not official supported aria-valuetransitionsgoal with data-transitionsgoal which may affect (or brick) your progressbars.

Note: Bootstrap's low percentage styles (introduced in 3.2.0) causes flickering under some circumstances (e.g. slow transitions). To preserve correct progressbar functionality + appearance this bs feature is reverted in v0.8.3. (and reverted by bootstrap in 3.3.0)

Note: Stacked progressbars are not supported by now.

Demo

Installation

Usage

  1. include bootstrap-progressbar.js

  2. activate bootstrap-progressbar functionality on progressbars of your choice:

  3. set the aria attribute and remove the width style attribute (alternatively you can set it to 0)

    1. data-transitiongoal

    2. aria-valuemin (default: 0) and aria-valuemax (default: 100)

Usage Extended

Settings

default values

transition_delay

Is the time in milliseconds until the animation starts.

This could be useful to delay the start on the initial page load like:

refresh_speed

Is the time in milliseconds which will elapse between every text refresh, aria-valuenow attribute update and update callback call.

display_text

Determines if and where to display text on the progressbar. Possible options:

use_percentage

If text will be displayed - this option determines whether to show the percentage value or the amount.

So if use_percentage is false and aria-valuemin and aria-valuemax are not set (or to 0 and 100) the value will be the same but amount_format will be used to format the result.

Example:

<div class="progress-bar" data-transitiongoal="75">

with use_percentage: true is the final text: 75%

with use_percentage: false is the final text: 75 / 100

percent_format

Is a function which returns the text format for progressbar with use_percentage: true.

It takes 1 argument which is the current percent value.

amount_format

Is a function which returns the text format for progressbar with use_percentage: false.

It takes 3 argument which are the current-, the max- and the min-amount.

update

Is a callback function which will be called while the progressbar is transitioning ;)

Depends on refresh_speed.

It takes 2 argument which is the current percent value and a reference to the attached progressbar element.

done

Is a callback function which will be called when the transition process is done.

It takes 1 argument which is a reference to the attached progressbar element.

fail

Is a callback function which will be called when an error occurs.

It takes 1 argument which is the error message.

Customisation

alignment

animation

to change the animation itself you have to overwrite either less or css

  1. horizontal

    • less

    • scss

    • css
  2. vertical

    • less

    • scss

    • css

Known Problems

Copyright and license

Copyright 2013-2015 Stephan Groß, under MIT license.

Want to appreciate my work? minddust at Gittip


All versions of bootstrap.progressbar with dependencies

PHP Build Version
Package Version
No informations.
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package gaomingcode/bootstrap.progressbar contains the following files

Loading the files please wait ....