All Projects → thecreation → jquery-asPieProgress

thecreation / jquery-asPieProgress

Licence: LGPL-3.0 license
A jQuery plugin that animate the pie progress.

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to jquery-asPieProgress

scalem
A jQuery plugin to make any element scalable (responsive).
Stars: ✭ 33 (-19.51%)
Mutual labels:  jquery-plugin
ripple-effect-click
Add ripple effect to any element you want when the click action happens ("ripple effect")
Stars: ✭ 15 (-63.41%)
Mutual labels:  jquery-plugin
jquery-bindings
Simple two-way data binding using proxies and requestIdleCallback
Stars: ✭ 17 (-58.54%)
Mutual labels:  jquery-plugin
Modern.JS
모던 자바스크립트 라이브러리/프레임워크 × KIPFA(한국인터넷전문가협회)
Stars: ✭ 16 (-60.98%)
Mutual labels:  jquery-plugin
readingbar
A simple progress bar that indicates the length & your current reading position of an article/page
Stars: ✭ 19 (-53.66%)
Mutual labels:  jquery-plugin
jquery-google-reviews
simple jquery Plugin that utilizes Google API to get data from a Place on Google Maps
Stars: ✭ 33 (-19.51%)
Mutual labels:  jquery-plugin
table2csv
A simple jQuery plugin to convert HTML tables to CSV
Stars: ✭ 32 (-21.95%)
Mutual labels:  jquery-plugin
animationCounter.js
animationCounter.js is a jQuery plugin that animates a number from a value to another value or to an infinite value
Stars: ✭ 18 (-56.1%)
Mutual labels:  jquery-plugin
Hashtegny
jQuery Plugin aggregates hashtags from different social media networks. Posts are displayed in a unique, & attractive grid, and animated layout.
Stars: ✭ 52 (+26.83%)
Mutual labels:  jquery-plugin
ajxnetcore
Its an innovative method to turn an ASP.NET Core Application Into Single Page Application, While enhancing the Software performance both on server and client side.
Stars: ✭ 31 (-24.39%)
Mutual labels:  jquery-plugin
jquery-tree
jQuery-tree is a jQuery plugin to make an HTML unorder list (ul) in a tree.
Stars: ✭ 29 (-29.27%)
Mutual labels:  jquery-plugin
vidbacking
vidbacking is a jQuery plugin to create HTML5 / Youtube video as background on webpage with fallback image support. It supports mp4 and webm files as well as Youtube video.
Stars: ✭ 55 (+34.15%)
Mutual labels:  jquery-plugin
Timespace
A jQuery plugin to handle displaying of time events
Stars: ✭ 27 (-34.15%)
Mutual labels:  jquery-plugin
Blapy
jQuery plugin that helps you to create and manage ajax and single page web applications (SPA) with almost no javascript coding to do it
Stars: ✭ 30 (-26.83%)
Mutual labels:  jquery-plugin
jquery.peekABar
jQuery plugin for a Notification Bar
Stars: ✭ 59 (+43.9%)
Mutual labels:  jquery-plugin
SyoTimer
jQuery plugin of countdown on html-page
Stars: ✭ 18 (-56.1%)
Mutual labels:  jquery-plugin
jquery-accessible-simple-tooltip-aria
jQuery accessible simple tooltip window, using ARIA
Stars: ✭ 22 (-46.34%)
Mutual labels:  jquery-plugin
jquery-smarty
jQuery Smarty Plugin (jQSmarty) is a port of the Smarty Templating Engine to Javascript/jQuery, offering a familiar client-side templating solution
Stars: ✭ 18 (-56.1%)
Mutual labels:  jquery-plugin
international-telephone-input
Integration to Magento 2 a jQuery plugin for entering and validating international telephone numbers.
Stars: ✭ 26 (-36.59%)
Mutual labels:  jquery-plugin
rellax
jQuery Rellax Plugin - Parallax awesomeness
Stars: ✭ 14 (-65.85%)
Mutual labels:  jquery-plugin

jQuery asPieProgress bower NPM version Dependency Status prs-welcome

A jQuery plugin that animate the pie progress.

Table of contents

Main files

dist/
├── jquery-asPieProgress.js
├── jquery-asPieProgress.es.js
├── jquery-asPieProgress.min.js
└── css/
    ├── asPieProgress.css
    └── asPieProgress.min.css

Quick start

Several quick start options are available:

Download the latest build

Install From Bower

bower install jquery-asPieProgress --save

Install From Npm

npm install jquery-asPieProgress --save

Install From Yarn

yarn add jquery-asPieProgress

Build From Source

If you want build from source:

git clone [email protected]:amazingSurge/jquery-asPieProgress.git
cd jquery-asPieProgress
npm install
npm install -g gulp-cli babel-cli
gulp build

Done!

Requirements

jquery-asPieProgress requires the latest version of jQuery.

Usage

Including files:

<link rel="stylesheet" href="/path/to/asPieProgress.css">
<script src="/path/to/jquery.js"></script>
<script src="/path/to/jquery-asPieProgress.js"></script>

Required HTML structure

<div class="pieProgress" role="progressbar" data-goal="100" aria-valuemin="0" data-step="2" aria-valuemax="100">
  <div class="progress__meter"><span class="progress__label"></span></div>
</div>

Initialization

All you need to do is call the plugin on the element:

jQuery(function($) {
  $('.example').asPieProgress({
    namespace: 'pieProgress'
  });
});

Examples

There are some example usages that you can look at to get started. They can be found in the examples folder.

Options

jquery-asPieProgress can accept an options object to alter the way it behaves. You can see the default options by call $.asPieProgress.setDefaults(). The structure of an options object is as follows:

{
  namespace: '',
  classes: {
    svg: 'pie_progress__svg',
    element: 'pie_progress',
    number: 'pie_progress__number',
    content: 'pie_progress__content'
  },
  min: 0,
  max: 100,
  goal: 100,
  size: 160,
  speed: 15, // speed of 1/100
  barcolor: '#ef1e25',
  barsize: '4',
  trackcolor: '#f2f2f2',
  fillcolor: 'none',
  easing: 'ease',
  numberCallback(n) {
    'use strict';
    const percentage = Math.round(this.getPercentage(n));
    return `${percentage}%`;
  },
  contentCallback: null
}

Methods

Methods are called on asPieProgress instances through the asPieProgress method itself. You can also save the instances to variable for further use.

// call directly
$().asPieProgress('start');

// or
var api = $().data('asPieProgress');
api.start();

start()

Start the pie progress animation.

$().asPieProgress('start');

stop()

Stop the pie progress animation.

$().asPieProgress('stop');

finish()

Finish the pie progress animation. The progress value will update to the goal value immediately.

$().asPieProgress('finish');

reset()

Reset the pie progress. The progress value will reset to first value.

$().asPieProgress('reset');

go(value)

Update the pie progress to the specific value.

$().asPieProgress("go", 50);
$().asPieProgress("go", '50%');

destroy()

Destroy the pie progress instance.

$().asPieProgress('destroy');

Events

jquery-asPieProgress provides custom events for the plugin’s unique actions.

$('.the-element').on('asPieProgress::ready', function (e) {
  // on instance ready
});
Event Description
init Fires when the instance is setup for the first time.
ready Fires when the instance is ready for API use.
start Fired when the start instance method has been called.
stop Fired when the stop instance method has been called.
update Fires when the progress value is changing.
finish Fires when the animation is finished, Or the finish instance method has been called.
reset Fired when the reset instance method has been called.
destroy Fires when an instance is destroyed.

No conflict

If you have to use other plugin with the same namespace, just call the $.asPieProgress.noConflict method to revert to it.

<script src="other-plugin.js"></script>
<script src="jquery-asPieProgress.js"></script>
<script>
  $.asPieProgress.noConflict();
  // Code that uses other plugin's "$().asPieProgress" can follow here.
</script>

Browser support

Tested on all major browsers.

Safari Chrome Firefox Edge IE Opera
Latest ✓ Latest ✓ Latest ✓ Latest ✓ 9-11 ✓ Latest ✓

As a jQuery plugin, you also need to see the jQuery Browser Support.

Contributing

Anyone and everyone is welcome to contribute. Please take a moment to review the guidelines for contributing. Make sure you're using the latest version of jquery-asPieProgress before submitting an issue. There are several ways to help out:

Development

jquery-asPieProgress is built modularly and uses Gulp as a build system to build its distributable files. To install the necessary dependencies for the build system, please run:

npm install -g gulp
npm install -g babel-cli
npm install

Then you can generate new distributable files from the sources, using:

gulp build

More gulp tasks can be found here.

Changelog

To see the list of recent changes, see Releases section.

Copyright and license

Copyright (C) 2016 amazingSurge.

Licensed under the LGPL license.

back to top

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].