Coder Social home page Coder Social logo

Regressive Timer about timer.jquery HOT 6 CLOSED

walmik avatar walmik commented on August 28, 2024
Regressive Timer

from timer.jquery.

Comments (6)

walmik avatar walmik commented on August 28, 2024

Thanks for your comments and suggestions. Can you please tell me how do you mean when you say regressive counter? Do you mean like a regular digital display as opposed to pretty display?

from timer.jquery.

walmik avatar walmik commented on August 28, 2024

Possibly a dupe of #1

from timer.jquery.

mahousenshi avatar mahousenshi commented on August 28, 2024

Like a countdown clock.

from timer.jquery.

walmik avatar walmik commented on August 28, 2024

Got it, that s a good idea. Re-opening this issue

from timer.jquery.

ryanv09 avatar ryanv09 commented on August 28, 2024

I have a simple solution for this until a better one is pushed.

In the render function, replace:

$el[display](secondsToTime(totalSeconds));

with:

if (options.countdown && duration > 0)
{
    $el[display](secondsToTime(duration - totalSeconds));
}
else
{
    $el[display](secondsToTime(totalSeconds));
}

and then call it like this:

$("selector").timer({duration:60, countdown:true});

from timer.jquery.

walmik avatar walmik commented on August 28, 2024

That s a good idea. Please feel free to submit a PR if it works and passes currently written tests. If possible add a test for it too.

from timer.jquery.

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.