Michael Nielsen
Michael Nielsen

Reputation: 1242

flipclock.js, change integer value on demand

I'm using the flipclock.js.

This is my initial code:

            clock = new FlipClock($('.clock'), {
                clockFace: 'Counter',
                autoStart: false,
                minimumDigits: 6,
            });

Is it possible to set a start integer, ex. 234943, and then change later to 423345 etc. without counting one-by-one?

Upvotes: 0

Views: 477

Answers (1)

Matt Burland
Matt Burland

Reputation: 45155

To set the initial value:

clock = new FlipClock($('.clock'), 234943, {
                clockFace: 'Counter',
                autoStart: false,
                minimumDigits: 6,
            });

You can update the value with:

clock.setTime(423345);

Upvotes: 2

Related Questions