Giter Club home page Giter Club logo

jquery-animatenumber's People

Contributors

aishek avatar nogorilla avatar sunyatasattva avatar topik avatar xdissent avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

jquery-animatenumber's Issues

numberStepFactories.separator returns NaN for negative numbers with three digits

The default numberStepFactories.separator (i.e. with three-digit groupings) shows NaN for negative numbers having exactly three digits (or rather multiples of three digits).

Example:

$('#world-population').animateNumber( {
      number: -222,
      numberStep: $.animateNumber.numberStepFactories.separator(',')
      });

This will show "NaN,222" , presumably because the negative sign is left in a digit group by itself.

Updating on the go to create a "live" counter

I'm trying to make it so that I could update the number given to animateNumber every X seconds (the data would be coming from an ajax request) without restarting the counter from 0. Is this possible ?

Use duration options and also a callback function

Hello, I'm not able to use duration options and a callback function at the same time:

element.find(".num").animateNumber({
            number: parseInt(element.text(), 10)
        },
        {
            duration: dur
        },
        function () {
            lastElement = element;
            setTimeout(function () {

                if (current_mobile_num < $(".real").length - 1) {
                    current_mobile_num++;
                } else {
                    current_mobile_num = 0;
                }
                anim_num_mobile(current_mobile_num, 2000, 0);
            }, 2000);
        }
    );

How can I achieve this?
Thanks in advance.

Передать значение number из html

Хороший скрипт, но очень неудобно задавать значения в скрипте. Хотелось бы иметь возможность передать значение для параметра "number" из самого элемента.
Пробовал так:

var number_value = $(this).data('numval');
$('.numberanimate').animateNumber({
number: number_value
}, 500);
<span id="valuebriks" class="numberanimate" data-numval="700">0</span>

но не получаеться. Видимо, скрипт не понимает, что this — это об этом элементе. Или я что-то делаю не так?

Custom animation start point with decimal doesn't works ?

Hi !

Thanks for that awesome plugin !

Is there a problem when we mix "custom animation start point" and "decimal places" ?

That seems to doesn't work and always start to 0.

Exemple :

`var decimal_places = 2;
var decimal_factor = decimal_places === 0 ? 1 : Math.pow(10, decimal_places);

    selector
    .prop('number', 22.55)
    .animateNumber(
      {
        number: 40.32* decimal_factor,
        numberStep: function(now, tween) {
            var floored_number = Math.floor(now) / decimal_factor,
                target = $(tween.elem);
                
                
                if (decimal_places > 0) {
                  
                // force decimal places even if they are 0
                  floored_number = floored_number.toFixed(decimal_places);

                  // replace '.' separator with ','
                  floored_number = floored_number.toString().replace('.', ',');
                }
            
                target.text(floored_number);
            
          }
      },
      500
    );`

Have you any idea ?

Thanks a lot.
Robin

animateNumber on toggle

Hello,

Was wondering if I could create a scenario where using your plugin and a checkbox.

based on smth (really crude / basic)

    $(selector).change(function(){
        if (this.checked) {
            animateNumber to 11111
        } else {
            animateNumber to 111
        }
    });

Basically to count up upon checking and count down upon unchecking.

easings don't seem to work when defined as an option

I've tried now multiple approaches to get easings to work. Been trying different jquery versions, etc. - the only way for me to make it work is to define the easing as an extra parameter. When an easing is defined as an option, it seems to be ignored.

So this approach ( as defined in the readme ) doesn't seem to work :

$(el).animateNumber(
    {
        number: 123,
        easing: 'easeInOutBack' // <-- doesn't seem to work
    },
    5000,
    function() {
        // some callback
    }
);

But this one does :

$(el).animateNumber(
    {
        number: 123
    },
    5000,
    'easeInOutBack',  // <-- works
    function() {
        // some callback
    }
);

broken in latest version of Jquery 3.x

Yes, i see its only compatible with a select versions of older JQuery , any chance you can update it to work with the most recent ones 3.x. Mainly because I try to use it on page(s) that just point to the latest CDN versions of Jquery and I would like to really use your script with them. Thanks

Callback when animation ends

Hi,

thank you for the great plugin.

Is there an option for callback when counter reach its end value (or when the animation stops)? Thank you again.

Need help with decimal

Hello!
How to make animation up to 7.89?
animateNumber({number: 7.89}, 300) - not work

Ressetting to 0 - looping animations

Hello, I have a series of numbers that animate after each other.

When I get to the last number, i'd like to animate the first number again, but when I call the function again the number stays at it's max value.

How can I reset the animation?
Thanks in advance.

Prepending ($) dollar-sign

I can't figure out how to extend the plugin in order to prepend a dollar sign. Is this possible? Thank you!

привет

Как сделать, чтоб анимация сработала при скролле, например цифры у меня в футере, и когда юзер скроллить до футера, чтоб заработал анимация, а то юзер не видит анимацию. мне нужно чтоб увидел и привлек внимание.
спасибо

Decimals?

Doesn't look like it would count up decimals. Seems to only round the numbers. How could you allow it to add up with decimals, so it can run on a currency.

Add support to animate "value" inside of <input> tag

The current version of the code uses $el.text() to set the value during animation, but that doesn't work with tags.

I made changes like the below to get it to work:

if (d(a.elem).prop("tagName") === "INPUT") { d(a.elem).prop("value",e); } else { d(a.elem).text(e); }

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.