Giter Site home page Giter Site logo

Countdown Circle about timecircles HOT 8 CLOSED

wimbarelds avatar wimbarelds commented on June 20, 2024
Countdown Circle

from timecircles.

Comments (8)

wimbarelds avatar wimbarelds commented on June 20, 2024

Hey there, the option you're looking for is total_duration. Try:

$("#YourTimer").TimeCircles({ total_duration: 15});

from timecircles.

jasonkmccoy avatar jasonkmccoy commented on June 20, 2024

Thanks :) Worked like a charm. Could you tell me if its possible to change the color so that when there are 15 seconds to 10 seconds, the color is green. When the time is between 10 seconds and 5 seconds, the color is yellow, when it gets to 5 seconds to 0, the color is red? Thanks a lot

from timecircles.

wimbarelds avatar wimbarelds commented on June 20, 2024

That would be something like:

var $timerDiv = $("#YourTimer");
$timerDiv.TimeCircles({ total_duration: 15, time: { Seconds: { color: "#00FF00" } }}).addListener(unit, value, total) {
    if(total == 10) $timerDiv.TimeCircles({ time: { Seconds: { color: "#FFFF00" } } });
    else if(total == 5) $timerDiv.TimeCircles({ time: { Seconds: { color: "#FF0000" } } });
});

(I haven't tested this code, but the code should look something like this).

from timecircles.

jasonkmccoy avatar jasonkmccoy commented on June 20, 2024

Thanks for your help. That last bit of code doesn't work or I'm doing it wrong.

from timecircles.

wimbarelds avatar wimbarelds commented on June 20, 2024

Could you link it to me so I can have a look?

from timecircles.

jasonkmccoy avatar jasonkmccoy commented on June 20, 2024

Ok, here's the link: http://hoppedupdesigns.com/countdownTimer/index.html

from timecircles.

wimbarelds avatar wimbarelds commented on June 20, 2024
var $timerDiv = $("#YourTimer");
$timerDiv.TimeCircles({ total_duration: 15, time: { Seconds: { color: "#00FF00" } }}).addListener(function(unit, value, total) {
    if(total == 10) $timerDiv.TimeCircles({ time: { Seconds: { color: "#FFFF00" } } });
    else if(total == 5) $timerDiv.TimeCircles({ time: { Seconds: { color: "#FF0000" } } });
});

Found an error, try this:

from timecircles.

jasonkmccoy avatar jasonkmccoy commented on June 20, 2024

Yep, that fixed it. Works great now. Thanks for your help and time. I'll stop bugging you now :)

from timecircles.

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.