Giter Site home page Giter Site logo

Starting point about progressbar.js HOT 10 CLOSED

popoydotcom avatar popoydotcom commented on September 17, 2024
Starting point

from progressbar.js.

Comments (10)

kimmobrunfeldt avatar kimmobrunfeldt commented on September 17, 2024

You'd have to create your own custom shape for that, you could e.g. copy https://github.com/kimmobrunfeldt/progressbar.js/blob/master/src/circle.js

from progressbar.js.

kimmobrunfeldt avatar kimmobrunfeldt commented on September 17, 2024

this._pathTemplate contains the shape of the circle

from progressbar.js.

popoydotcom avatar popoydotcom commented on September 17, 2024

thank you. will look into this

from progressbar.js.

kimmobrunfeldt avatar kimmobrunfeldt commented on September 17, 2024

I can try to provide an example

from progressbar.js.

popoydotcom avatar popoydotcom commented on September 17, 2024

yes if its no trouble :), im a bit of amateur when it comes to understanding codes

from progressbar.js.

kimmobrunfeldt avatar kimmobrunfeldt commented on September 17, 2024

I have to make some additions to the core API so it's possible to easily add custom shapes. In the meanwhile, you could also rotate your progress bar by 180deg: http://jsfiddle.net/1s6149mk/

from progressbar.js.

popoydotcom avatar popoydotcom commented on September 17, 2024

omg thank you will look into this.

from progressbar.js.

kimmobrunfeldt avatar kimmobrunfeldt commented on September 17, 2024

The core API exposes Shape and internal utils module in the next release, they can be used to create new shapes as easily as progressbar.js does internally. See example: http://jsfiddle.net/mtLjzmoy/. I have currently the next release built in pre-release/0.9.0 branch.

Line is the easiest built-in shape to check how Shape and utils are used internally, https://github.com/kimmobrunfeldt/progressbar.js/blob/master/src/line.js.

JS in the fiddle:

// Triangle.js
// --------------------------------------------------
var Shape = ProgressBar.Shape;
var utils = ProgressBar.utils;

var Triangle = function Triangle(container, options) {
    this._pathTemplate = 'M 50,{center} L 100,{bottomCenter}' +
                         ' L 0,{bottomCenter} L 50,{center}';
    Shape.apply(this, arguments);
};

Triangle.prototype = new Shape();
Triangle.prototype.constructor = Triangle;

Triangle.prototype._pathString = function _pathString(opts) {
    return utils.render(this._pathTemplate, {
        center: opts.strokeWidth / 2,
        bottomCenter: 100 - opts.strokeWidth / 2
    });
};

Triangle.prototype._trailString = function _trailString(opts) {
    return this._pathString(opts);
};
// --------------------------------------------------


// Using Triangle
var bar = new Triangle('#container', {
    color: '#FCB03C',
    strokeWidth: 1
});

bar.animate(1.0);  // Number from 0.0 to 1.0

from progressbar.js.

clarklight avatar clarklight commented on September 17, 2024

For the rotation, is there possible to have the text not rotated?

from progressbar.js.

kimmobrunfeldt avatar kimmobrunfeldt commented on September 17, 2024

The rotation issue is solved here: #70

from progressbar.js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.